Changeset 14964 in josm for trunk/src/org
- Timestamp:
- 2019-04-06T19:39:05+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Node.java
r14960 r14964 414 414 if (ll.isOutSideWorld()) 415 415 return true; 416 if (! new Node(ll).getEastNorth().equalsEpsilon(getEastNorth(), 1.0)) {416 if (!ProjectionRegistry.getProjection().latlon2eastNorth(ll).equalsEpsilon(getEastNorth(), 1.0)) { 417 417 // we get here if a node was moved or created left from -180 or right from +180 418 418 return true;
Note:
See TracChangeset
for help on using the changeset viewer.