Changeset 5554 in josm for trunk/test/unit/org/openstreetmap/josm/data/projection
- Timestamp:
- 2012-11-03T09:58:37+01:00 (12 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/data/projection
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java
r5236 r5554 65 65 double east = Double.parseDouble(f[3]); 66 66 double north = Double.parseDouble(f[4]); 67 Projection p = Projection Info.getProjectionByCode(code);67 Projection p = Projections.getProjectionByCode(code); 68 68 { 69 69 EastNorth en = p.latlon2eastNorth(new LatLon(lat, lon)); -
trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java
r5236 r5554 171 171 172 172 for (TestData data : allData) { 173 Projection proj = Projection Info.getProjectionByCode(data.code);173 Projection proj = Projections.getProjectionByCode(data.code); 174 174 if (proj == null) { 175 175 fail.append("Projection "+data.code+" from test data was not found!\n");
Note:
See TracChangeset
for help on using the changeset viewer.