Changeset 2495 in josm for trunk/src/org


Ignore:
Timestamp:
2009-11-21T23:03:24+01:00 (14 years ago)
Author:
stoecker
Message:

don't translate assertions

File:
1 edited

Legend:

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

    r2435 r2495  
    9595            // in case #3892 happens again
    9696            //
    97             assert n!= null : tr("null detected in node list");
    98             assert n.getEastNorth() != null : tr("unexpected null value for n.getEastNorth(). id of n is", n.getUniqueId());
     97            assert n!= null : "null detected in node list";
     98            assert n.getEastNorth() != null : "unexpected null value for n.getEastNorth(). id of n is" + n.getUniqueId();
     99
    99100            n.setEastNorth(n.getEastNorth().add(x, y));
    100101            n.setModified(true);
Note: See TracChangeset for help on using the changeset viewer.