Changeset 18643 in josm for trunk/src


Ignore:
Timestamp:
2023-01-21T22:59:49+01:00 (15 months ago)
Author:
Klumbumbus
Message:

fix #22473 - Don't warn about "Way end node near other way" for natural=arete and natural=ridge

File:
1 edited

Legend:

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

    r18494 r18643  
    179179        @Override
    180180        protected boolean isCandidate(OsmPrimitive p) {
    181             return p.hasKey("landuse") || p.hasTagDifferent("natural", "tree_row", "cliff");
     181            return p.hasKey("landuse") || p.hasTagDifferent("natural", "arete", "cliff", "ridge", "tree_row");
    182182        }
    183183    }
Note: See TracChangeset for help on using the changeset viewer.