Changeset 1636 in josm for trunk/src/org/openstreetmap/josm/data/conflict
- Timestamp:
- 2009-06-06T13:38:32+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/conflict/PositionConflict.java
r1567 r1636 23 23 @Override public void apply(OsmPrimitive target, OsmPrimitive other) { 24 24 if (target instanceof Node) { 25 ((Node)target).coor = ((Node)other).coor; 26 ((Node)target).eastNorth = ((Node)other).eastNorth; 25 ((Node)target).setEastNorth(((Node)other).eastNorth); 27 26 int newversion = Math.max(target.version, other.version); 28 27 // set version on "other" as well in case user decides to keep local
Note:
See TracChangeset
for help on using the changeset viewer.