Index: /trunk/src/org/openstreetmap/josm/command/MoveCommand.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/command/MoveCommand.java	(revision 3172)
+++ /trunk/src/org/openstreetmap/josm/command/MoveCommand.java	(revision 3173)
@@ -92,7 +92,7 @@
         for (Node n : nodes) {
             // in case #3892 happens again
-            if (n!= null) 
+            if (n == null)
                 throw new AssertionError("null detected in node list");
-            if (n.getEastNorth() != null)
+            if (n.getEastNorth() == null)
                 throw new AssertionError("unexpected null value for n.getEastNorth(). id of n is" + n.getUniqueId());
 
