- Timestamp:
- 2007-05-06T16:28:53+02:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/data/osm/visitor/MergeVisitor.java
r224 r226 250 250 if (ls1.id == ls2.id && ls1.id != 0) 251 251 return true; 252 //if (ls1.id != 0 && ls2.id != 0) 253 // return false; 252 254 if (ls1.incomplete || ls2.incomplete) 253 255 return false; … … 288 290 if (other.keys == null) 289 291 return; 290 if (my.keySet().containsAll(other.keys. entrySet()))292 if (my.keySet().containsAll(other.keys.keySet())) 291 293 return; 292 294 if (my.keys == null)
Note:
See TracChangeset
for help on using the changeset viewer.