Changeset 31463 in osm
- Timestamp:
- 2015-08-07T23:18:18+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/replacegeometry/ReplaceGeometryUtils.java
r31072 r31463 428 428 protected static boolean isInArea(Node node, Area area) { 429 429 LatLon ll = node.getCoor(); 430 if (node.isNewOrUndeleted() || area == null || area.contains(ll.getX(), ll.getY())) {430 if (node.isNewOrUndeleted() || area == null || ll == null || area.contains(ll.getX(), ll.getY())) { 431 431 return true; 432 432 }
Note:
See TracChangeset
for help on using the changeset viewer.