Changeset 12991 in osm for applications/editors/josm/plugins/waypoints
- Timestamp:
- 2009-01-06T17:43:27+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/waypoints/src/WaypointReader.java
r12778 r12991 55 55 if (Math.abs(lat) > 90) 56 56 throw new SAXException 57 (tr("Data error: lat value \"{0}\" is out of bound.", 57 (tr("Data error: lat value \"{0}\" is out of bounds.", 58 58 lat)); 59 59 if (Math.abs(lon) > 180) 60 60 throw new SAXException 61 (tr("Data error: lon value \"{0}\" is out of bound.", 61 (tr("Data error: lon value \"{0}\" is out of bounds.", 62 62 lon)); 63 63 currentLatLon = new LatLon(lat, lon);
Note:
See TracChangeset
for help on using the changeset viewer.