Changeset 6368 in josm


Ignore:
Timestamp:
2013-11-06T11:58:22+01:00 (10 years ago)
Author:
Don-vip
Message:

see #9141 - validator: Remove service and road support for missing crossing on highway for next release at least

File:
1 edited

Legend:

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

    r6303 r6368  
    128128                        handlePedestrianWay(n, w);
    129129                    }
    130                 } else if (CLASSIFIED_HIGHWAYS.contains(highway) || highway.equals("service") || highway.equals("road")) {
     130                } else if (CLASSIFIED_HIGHWAYS.contains(highway)) {
     131                    // Only look at classified highways for now:
     132                    // - service highways support is TBD (see #9141 comments)
     133                    // - roads should be determined first. Another warning is raised anyway
    131134                    handleCarWay(n, w);
    132135                }
Note: See TracChangeset for help on using the changeset viewer.