Index: /trunk/src/org/openstreetmap/josm/command/MoveCommand.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/command/MoveCommand.java	(revision 2494)
+++ /trunk/src/org/openstreetmap/josm/command/MoveCommand.java	(revision 2495)
@@ -95,6 +95,7 @@
             // in case #3892 happens again
             //
-            assert n!= null : tr("null detected in node list");
-            assert n.getEastNorth() != null : tr("unexpected null value for n.getEastNorth(). id of n is", n.getUniqueId());
+            assert n!= null : "null detected in node list";
+            assert n.getEastNorth() != null : "unexpected null value for n.getEastNorth(). id of n is" + n.getUniqueId();
+
             n.setEastNorth(n.getEastNorth().add(x, y));
             n.setModified(true);
