Changeset 161 in josm for src


Ignore:
Timestamp:
2006-10-13T22:11:37+02:00 (18 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.