Changeset 2495 in josm
- Timestamp:
- 2009-11-21T23:03:24+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/MoveCommand.java
r2435 r2495 95 95 // in case #3892 happens again 96 96 // 97 assert n!= null : tr("null detected in node list"); 98 assert n.getEastNorth() != null : tr("unexpected null value for n.getEastNorth(). id of n is", n.getUniqueId()); 97 assert n!= null : "null detected in node list"; 98 assert n.getEastNorth() != null : "unexpected null value for n.getEastNorth(). id of n is" + n.getUniqueId(); 99 99 100 n.setEastNorth(n.getEastNorth().add(x, y)); 100 101 n.setModified(true);
Note:
See TracChangeset
for help on using the changeset viewer.