Changeset 7273 in josm for trunk/src/org
- Timestamp:
- 2014-06-28T02:41:04+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/Highways.java
r7258 r7273 99 99 public void visit(Way w) { 100 100 if (w.isUsable()) { 101 if (w.hasKey("highway") && w.hasKey("junction") && "roundabout".equals(w.get("junction"))) {101 if (w.hasKey("highway") && CLASSIFIED_HIGHWAYS.contains(w.get("highway")) && w.hasKey("junction") && "roundabout".equals(w.get("junction"))) { 102 102 testWrongRoundabout(w); 103 103 } … … 224 224 } 225 225 } 226 226 227 227 private void testSourceMaxspeed(OsmPrimitive p, boolean testContextHighway) { 228 228 String value = p.get("source:maxspeed");
Note:
See TracChangeset
for help on using the changeset viewer.