Changeset 3173 in josm


Ignore:
Timestamp:
2010-04-06T21:31:22+02:00 (14 years ago)
Author:
jttt
Message:

Fix r3172

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/MoveCommand.java

    r3172 r3173  
    9292        for (Node n : nodes) {
    9393            // in case #3892 happens again
    94             if (n!= null)
     94            if (n == null)
    9595                throw new AssertionError("null detected in node list");
    96             if (n.getEastNorth() != null)
     96            if (n.getEastNorth() == null)
    9797                throw new AssertionError("unexpected null value for n.getEastNorth(). id of n is" + n.getUniqueId());
    9898
Note: See TracChangeset for help on using the changeset viewer.