- Timestamp:
- 2018-05-20T23:45:45+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/OffsetBookmark.java
r13797 r13798 235 235 * @param imageryId The identifier 236 236 * @see #getImageryId() 237 * @since xxx237 * @since 13797 238 238 */ 239 239 public void setImageryId(String imageryId) { … … 256 256 List<OffsetBookmark> bookmarks = StructUtils.getListOfStructs( 257 257 Config.getPref(), "imagery.offsetbookmarks", null, OffsetBookmark.class); 258 if (bookmarks == null) { 259 saveBookmarks(); 260 } else { 258 if (bookmarks != null) { 261 259 sanitizeBookmarks(bookmarks); 262 260 allBookmarks.addAll(bookmarks);
Note:
See TracChangeset
for help on using the changeset viewer.