Changeset 35976 in osm for applications/editors/josm/plugins/reltoolbox
- Timestamp:
- 2022-06-14T20:11:21+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/SplittingMultipolygons.java
r35829 r35976 52 52 return false; 53 53 for (Node n : way.getNodes()) { 54 LatLon ll = n.getCoor(); 55 if (n.isIncomplete() || (a != null && !a.contains(ll.getX(), ll.getY()))) 54 if (n.isIncomplete() || (a != null && !a.contains(n.lon(), n.lat()))) 56 55 return false; 57 56 }
Note:
See TracChangeset
for help on using the changeset viewer.