- Timestamp:
- 2016-05-13T13:04:11+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/Highways.java
r10179 r10204 106 106 public void visit(Way w) { 107 107 if (w.isUsable()) { 108 if (w. hasKey("highway") && CLASSIFIED_HIGHWAYS.contains(w.get("highway"))108 if (w.isClosed() && w.hasKey("highway") && CLASSIFIED_HIGHWAYS.contains(w.get("highway")) 109 109 && w.hasKey("junction") && "roundabout".equals(w.get("junction"))) { 110 // TODO: find out how to handle splitted roundabouts (see #12841) 110 111 testWrongRoundabout(w); 111 112 }
Note:
See TracChangeset
for help on using the changeset viewer.