Changeset 2181 in josm for trunk/src/org/openstreetmap/josm/io/OsmServerHistoryReader.java
- Timestamp:
- 2009-09-22T15:34:19+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmServerHistoryReader.java
r1892 r2181 31 31 public OsmServerHistoryReader(OsmPrimitiveType type, long id) throws IllegalArgumentException { 32 32 if (type == null) 33 throw new IllegalArgumentException(tr(" parameter ''{0}'' must not be null", "type"));33 throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "type")); 34 34 if (id < 0) 35 throw new IllegalArgumentException(tr(" parameter ''{0}'' >= 0 expected, got ''{1}''", "id", id));35 throw new IllegalArgumentException(tr("Parameter ''{0}'' >= 0 expected. Got ''{1}''.", "id", id)); 36 36 this.primitiveType = type; 37 37 this.id = id;
Note:
See TracChangeset
for help on using the changeset viewer.
