Skip to content

Commit

Permalink
close #72
Browse files Browse the repository at this point in the history
  • Loading branch information
laurens-dg committed Jul 23, 2014
1 parent 51171d7 commit 86ceece
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/be/artoria/belfortapp/app/PrefUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ public static List<POI> getSavedRoute(){
public static void saveRoute(List<POI> route){
StringBuilder sb = new StringBuilder();
for(POI poi : route){
sb.append(poi.id + ",");
sb.append(poi.id);
sb.append(",");
}
if(sb.length() > 0) {
sb.delete(sb.length() - 1, sb.length());
Expand Down

0 comments on commit 86ceece

Please sign in to comment.