- Timestamp:
- 2015-04-09T20:25:33+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/upload/FixDataHook.java
r8178 r8179 166 166 @Override 167 167 public boolean fixKeys(Map<String, String> keys, OsmPrimitive osm) { 168 if(oldValue.equals(keys.get(oldKey)) && (newKey.equals(oldKey) || !keys.containsKey(newKey))) { 168 if(oldValue.equals(keys.get(oldKey)) && (newKey.equals(oldKey) 169 || !keys.containsKey(newKey) || keys.get(newKey).equals(newValue))) { 169 170 keys.put(newKey, newValue); 170 171 if(!newKey.equals(oldKey))
Note:
See TracChangeset
for help on using the changeset viewer.