Changeset 5283 in osm for applications/editors/josm
- Timestamp:
- 2007-11-03T00:11:02+01:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/SelfIntersectingWay.java
r5247 r5283 24 24 HashSet<Node> nodes = new HashSet<Node>(); 25 25 26 for (Node n : w.nodes) { 26 for (int i = 1; i < w.nodes.size() - 1; i++) { 27 Node n = w.nodes.get(i); 27 28 if (nodes.contains(n)) { 28 29 errors.add(new TestError(this,
Note:
See TracChangeset
for help on using the changeset viewer.