Changeset 3821 in josm
- Timestamp:
- 2011-01-26T10:45:51+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/ProjectionInfo.java
r3779 r3821 39 39 if (!(proj instanceof ProjectionSubPrefs)) 40 40 throw new IllegalStateException(tr( 41 "Projection code mismatch in ' {0}': toCode() returns ''{1}'', expected ''{2}''",41 "Projection code mismatch in ''{0}'': toCode() returns ''{1}'', expected ''{2}''.", 42 42 proj.getClass().toString(), proj.toCode(), code)); 43 43 ProjectionSubPrefs projSub = recreateProj((ProjectionSubPrefs)proj); … … 48 48 if (!code.equals(projSub.toCode())) 49 49 throw new IllegalStateException(tr( 50 "Bad implementation of ' {0}' projection class: cannot set preferences to match code ''{1}''",50 "Bad implementation of ''{0}'' projection class: cannot set preferences to match code ''{1}''.", 51 51 projSub.getClass().toString(), code)); 52 52 allCodes.put(code, projSub);
Note:
See TracChangeset
for help on using the changeset viewer.