Ignore:
Timestamp:
2010-01-12T07:16:18+01:00 (14 years ago)
Author:
Gubaer
Message:

see #4339: applied patch by andre68: MessageFormat fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java

    r2714 r2822  
    10381038            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null", "other"));
    10391039        if (other.isNew() ^ isNew())
    1040             throw new DataIntegrityProblemException(tr("Can''t merge because either of the participating primitives is new and the other is not"));
     1040            throw new DataIntegrityProblemException(tr("Can't merge because either of the participating primitives is new and the other is not"));
    10411041        if (! other.isNew() && other.getId() != id)
    10421042            throw new DataIntegrityProblemException(tr("Can''t merge primitives with different ids. This id is {0}, the other is {1}", id, other.getId()));
Note: See TracChangeset for help on using the changeset viewer.