Changeset 8285 in josm for trunk/src/org/openstreetmap/josm/actions/upload
- Timestamp:
- 2015-04-28T00:49:49+02:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions/upload
- Files:
-
- 2 edited
-
FixDataHook.java (modified) (2 diffs)
-
UploadNotesTask.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/upload/FixDataHook.java
r8179 r8285 107 107 public static class FixDataKey implements FixData { 108 108 /** key of wrong data */ 109 String oldKey; 109 private String oldKey; 110 110 /** key of correct data */ 111 String newKey; 111 private String newKey; 112 112 113 113 /** … … 141 141 public static class FixDataTag implements FixData { 142 142 /** key of wrong data */ 143 String oldKey; 143 private String oldKey; 144 144 /** value of wrong data */ 145 String oldValue; 145 private String oldValue; 146 146 /** key of correct data */ 147 String newKey; 147 private String newKey; 148 148 /** value of correct data */ 149 String newValue; 149 private String newValue; 150 150 151 151 /** -
trunk/src/org/openstreetmap/josm/actions/upload/UploadNotesTask.java
r7937 r8285 42 42 43 43 private boolean isCanceled = false; 44 Map<Note, Note> updatedNotes = new HashMap<>(); 45 Map<Note, Exception> failedNotes = new HashMap<>(); 44 private Map<Note, Note> updatedNotes = new HashMap<>(); 45 private Map<Note, Exception> failedNotes = new HashMap<>(); 46 46 47 47 /**
Note:
See TracChangeset
for help on using the changeset viewer.
