Changeset 481 in josm for trunk/src/org
- Timestamp:
- 2007-12-02T18:12:44+01:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/MergeVisitor.java
r479 r481 63 63 // 2. Try to find a prim we can merge with the prim from the other ds. 64 64 for (P my : myprims) { 65 if (!mergeprims.contains(my)) { // This checks for id equality. 66 continue; 67 } 68 69 if (match(my, other)) { 65 // LinkedList.contains calls equal, and OsmPrimitive.equal 66 // compares just the id. 67 if (match(my, other) && !mergeprims.contains(my)) { 70 68 merged.put(other, my); 71 69 mergeCommon(my, other);
Note:
See TracChangeset
for help on using the changeset viewer.