- Timestamp:
- 2009-11-10T22:12:49+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/MoveCommand.java
r2025 r2435 2 2 package org.openstreetmap.josm.command; 3 3 4 import static org.openstreetmap.josm.tools.I18n.tr; 4 5 import static org.openstreetmap.josm.tools.I18n.trn; 5 6 … … 92 93 @Override public boolean executeCommand() { 93 94 for (Node n : nodes) { 95 // in case #3892 happens again 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()); 94 99 n.setEastNorth(n.getEastNorth().add(x, y)); 95 100 n.setModified(true);
Note:
See TracChangeset
for help on using the changeset viewer.