Ignore:
Timestamp:
2009-06-06T13:38:32+02:00 (16 years ago)
Author:
stoecker
Message:

fix #2302 - patch by jttt - some code cleanup for better encapsulation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/conflict/PositionConflict.java

    r1567 r1636  
    2323    @Override public void apply(OsmPrimitive target, OsmPrimitive other) {
    2424        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);
    2726            int newversion = Math.max(target.version, other.version);
    2827            // set version on "other" as well in case user decides to keep local
Note: See TracChangeset for help on using the changeset viewer.