Changeset 18197 in osm for applications
- Timestamp:
- 2009-10-17T17:47:36+02:00 (15 years ago)
- Location:
- applications/editors/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/NodesWithSameName.java
r18122 r18197 36 36 String name = n.get("name"); 37 37 String sign = n.get("traffic_sign"); 38 if (name == null || (sign != null && sign.equals("city_limit"))) return; 38 String highway = n.get("highway"); 39 if (name == null 40 || (sign != null && sign.equals("city_limit")) 41 || (highway != null && highway.equals("bus_stop"))) { 42 return; 43 } 39 44 40 45 List<Node> nodes = namesToNodes.get(name);
Note:
See TracChangeset
for help on using the changeset viewer.