Changeset 3173 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2010-04-06T21:31:22+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/MoveCommand.java
r3172 r3173 92 92 for (Node n : nodes) { 93 93 // in case #3892 happens again 94 if (n != null)94 if (n == null) 95 95 throw new AssertionError("null detected in node list"); 96 if (n.getEastNorth() != null)96 if (n.getEastNorth() == null) 97 97 throw new AssertionError("unexpected null value for n.getEastNorth(). id of n is" + n.getUniqueId()); 98 98
Note:
See TracChangeset
for help on using the changeset viewer.