Changeset 7184 in josm for trunk/src/org/openstreetmap/josm/data/projection/CustomProjection.java
- Timestamp:
- 2014-05-28T23:41:31+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/CustomProjection.java
r7005 r7184 187 187 } 188 188 if (!Param.paramsByKey.containsKey(key)) 189 throw new ProjectionConfigurationException(tr("Unkown parameter: ''{0}''.", key)); 189 throw new ProjectionConfigurationException(tr("Unknown parameter: ''{0}''.", key)); 190 190 if (Param.paramsByKey.get(key).hasValue && value == null) 191 191 throw new ProjectionConfigurationException(tr("Value expected for parameter ''{0}''.", key)); … … 279 279 if (datumId != null) { 280 280 Datum datum = Projections.getDatum(datumId); 281 if (datum == null) throw new ProjectionConfigurationException(tr("Unkown datum identifier: ''{0}''", datumId)); 281 if (datum == null) throw new ProjectionConfigurationException(tr("Unknown datum identifier: ''{0}''", datumId)); 282 282 return datum; 283 283 } … … 337 337 338 338 Proj proj = Projections.getBaseProjection(id); 339 if (proj == null) throw new ProjectionConfigurationException(tr("Unkown projection identifier: ''{0}''", id)); 339 if (proj == null) throw new ProjectionConfigurationException(tr("Unknown projection identifier: ''{0}''", id)); 340 340 341 341 ProjParameters projParams = new ProjParameters();
Note:
See TracChangeset
for help on using the changeset viewer.
