Changeset 3186 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2010-04-15T19:41:04+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/MoveCommand.java
r3173 r3186 91 91 @Override public boolean executeCommand() { 92 92 for (Node n : nodes) { 93 System.err.println("MoveCommand "+ Thread.currentThread().getName()); 93 94 // in case #3892 happens again 94 95 if (n == null) 95 96 throw new AssertionError("null detected in node list"); 96 97 if (n.getEastNorth() == null) 97 throw new AssertionError("unexpected null value for n.getEastNorth(). id of n is " + n.getUniqueId());98 throw new AssertionError("unexpected null value for n.getEastNorth(). id of n is " + n.getUniqueId()); 98 99 99 100 n.setEastNorth(n.getEastNorth().add(x, y));
Note: See TracChangeset
for help on using the changeset viewer.