Changeset 161 in josm


Ignore:
Timestamp:
Oct 13, 2006 10:11:37 PM (7 years ago)
Author:
imi
Message:
  • fixed the deletion of bookmarks when upgrading from older versions
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/gui/BookmarkList.java

    r153 r161  
    5858                        for (String line = in.readLine(); line != null; line = in.readLine()) { 
    5959                                StringTokenizer st = new StringTokenizer(line, ","); 
    60                                 if (st.countTokens() != 5) 
     60                                if (st.countTokens() < 5) 
    6161                                        continue; 
    6262                                Bookmark b = new Bookmark(); 
Note: See TracChangeset for help on using the changeset viewer.