Changeset 8285 in josm for trunk/src/org/openstreetmap/josm/command/MoveCommand.java
- Timestamp:
- 2015-04-28T00:49:49+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/MoveCommand.java
r7005 r8285 171 171 for (Node n : nodes) { 172 172 OldNodeState os = it.next(); 173 if (os. eastNorth != null) {174 n.setEastNorth(os. eastNorth.add(x, y));173 if (os.getEastNorth() != null) { 174 n.setEastNorth(os.getEastNorth().add(x, y)); 175 175 } 176 176 } … … 197 197 for (Node n : nodes) { 198 198 OldNodeState os = it.next(); 199 n.setCoor(os. latlon);200 n.setModified(os. modified);199 n.setCoor(os.getLatlon()); 200 n.setModified(os.isModified()); 201 201 } 202 202 }
Note:
See TracChangeset
for help on using the changeset viewer.