Changeset 3039 in josm
- Timestamp:
- 2010-02-25T00:09:13+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/DataSetMerger.java
r3034 r3039 88 88 // return; 89 89 } else { 90 // ignore deleted primitives from source 91 if (source.isDeleted()) return; 92 90 93 // try to merge onto a primitive which has no id assigned 91 94 // yet but which is equal in its semantic attributes … … 99 102 } 100 103 for (OsmPrimitive target : candidates) { 101 if (!target.isNew() ) {104 if (!target.isNew() || target.isDeleted()) { 102 105 continue; 103 106 } 104 107 if (target.hasEqualSemanticAttributes(source)) { 105 108 mergedMap.put(source.getUniqueId(), target.getUniqueId()); 106 if (target.isDeleted() != source.isDeleted()) { 107 // differences in deleted state have to be merged manually 108 // 109 conflicts.add(target, source); 110 } else { 111 // copy the technical attributes from other 112 // version 113 target.setVisible(source.isVisible()); 114 target.setUser(source.getUser()); 115 target.setTimestamp(source.getTimestamp()); 116 target.setModified(source.isModified()); 117 objectsWithChildrenToMerge.add(source.getPrimitiveId()); 118 } 109 // copy the technical attributes from other 110 // version 111 target.setVisible(source.isVisible()); 112 target.setUser(source.getUser()); 113 target.setTimestamp(source.getTimestamp()); 114 target.setModified(source.isModified()); 115 objectsWithChildrenToMerge.add(source.getPrimitiveId()); 119 116 return; 120 117 }
Note:
See TracChangeset
for help on using the changeset viewer.