Changeset 10204 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2016-05-13T13:04:11+02:00 (8 years ago)
Author:
Don-vip
Message:

see #12841 - ignore splitted roundabouts in roundabout validation test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/Highways.java

    r10179 r10204  
    106106    public void visit(Way w) {
    107107        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"))
    109109                    && w.hasKey("junction") && "roundabout".equals(w.get("junction"))) {
     110                // TODO: find out how to handle splitted roundabouts (see #12841)
    110111                testWrongRoundabout(w);
    111112            }
Note: See TracChangeset for help on using the changeset viewer.