Changeset 12294 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2017-06-01T15:44:56+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/projection
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/CustomProjection.java
r12293 r12294 200 200 */ 201 201 public CustomProjection(String pref) { 202 this(null, null, pref , null);202 this(null, null, pref); 203 203 } 204 204 -
trunk/src/org/openstreetmap/josm/data/projection/Projections.java
r11853 r12294 345 345 ProjectionDefinition pd = inits.get(code); 346 346 if (pd == null) return null; 347 proj = new CustomProjection(pd.name, code, pd.definition , null);347 proj = new CustomProjection(pd.name, code, pd.definition); 348 348 } 349 349 projectionsByCode_cache.put(code, proj);
Note:
See TracChangeset
for help on using the changeset viewer.