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


Ignore:
Timestamp:
2018-06-17T16:48:59+02:00 (6 years ago)
Author:
Don-vip
Message:

fix #16394 - exlude natural=tree_row from "Way end node near other way" test

File:
1 edited

Legend:

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

    r12846 r13942  
    452452                // the time very near the associated highway, which is perfectly normal, see #9332
    453453                && !w.hasKey("addr:interpolation")
    454                 // similarly for public transport platforms
    455                 && !w.hasTag(HIGHWAY, "platform") && !w.hasTag(RAILWAY, "platform")
     454                // similarly for public transport platforms, tree rows
     455                && !w.hasTag(HIGHWAY, "platform") && !w.hasTag(RAILWAY, "platform") && !w.hasTag("natural", "tree_row")
    456456                ) {
    457457            ways.addAll(getWaySegments(w));
Note: See TracChangeset for help on using the changeset viewer.