Ignore:
Timestamp:
2010-04-15T19:41:04+02:00 (13 years ago)
Author:
bastiK
Message:

fixed #4601 - Conflict list dialog won't update unless I prod it

File:
1 edited

Legend:

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

    r3173 r3186  
    9191    @Override public boolean executeCommand() {
    9292        for (Node n : nodes) {
     93            System.err.println("MoveCommand "+ Thread.currentThread().getName());
    9394            // in case #3892 happens again
    9495            if (n == null)
    9596                throw new AssertionError("null detected in node list");
    9697            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());
    9899
    99100            n.setEastNorth(n.getEastNorth().add(x, y));
Note: See TracChangeset for help on using the changeset viewer.