Changeset 18176 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2021-08-25T21:16:38+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/UntaggedWay.java
r16220 r18176 13 13 import org.openstreetmap.josm.data.osm.OsmDataManager; 14 14 import org.openstreetmap.josm.data.osm.OsmPrimitive; 15 import org.openstreetmap.josm.data.osm.OsmUtils; 15 16 import org.openstreetmap.josm.data.osm.Relation; 16 17 import org.openstreetmap.josm.data.osm.RelationMember; … … 112 113 } 113 114 114 if (!w.isTagged() && !waysUsedInRelations.contains(w)) { 115 // #20393 - ways tagged with just area=yes are catched by MapCSS tests 116 if (!w.isTagged() && !w.hasTag("area", OsmUtils.TRUE_VALUE) && !waysUsedInRelations.contains(w)) { 115 117 if (w.hasKeys()) { 116 118 errors.add(TestError.builder(this, Severity.WARNING, COMMENTED_WAY)
Note:
See TracChangeset
for help on using the changeset viewer.