Ignore:
Timestamp:
2017-09-15T00:06:10+02:00 (7 years ago)
Author:
Don-vip
Message:

fix #15256 - limit roundabout validation test to waynodes all in downloaded area

File:
1 edited

Legend:

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

    r12312 r12864  
    9595    public void visit(Way w) {
    9696        if (w.isUsable()) {
    97             if (w.isClosed() && w.hasTag(HIGHWAY, CLASSIFIED_HIGHWAYS) && w.hasTag("junction", "roundabout")) {
     97            if (w.isClosed() && w.hasTag(HIGHWAY, CLASSIFIED_HIGHWAYS) && w.hasTag("junction", "roundabout")
     98                    && IN_DOWNLOADED_AREA_STRICT.test(w)) {
    9899                // TODO: find out how to handle splitted roundabouts (see #12841)
    99100                testWrongRoundabout(w);
Note: See TracChangeset for help on using the changeset viewer.