Changeset 4496 in josm for trunk/src/org
- Timestamp:
- 2011-10-07T21:46:00+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/OverlappingWays.java
r4448 r4496 101 101 if (area > 0) { 102 102 if (ways == 0 || duplicated.size() == area) { 103 continue; 103 errortype = tr("Areas share segment"); 104 type = OVERLAPPING_AREA; 104 105 } else if (highway == ways) { 105 errortype = tr(" Overlapping highways (with area)");106 errortype = tr("Highways share segment with area"); 106 107 type = OVERLAPPING_HIGHWAY_AREA; 107 108 } else if (railway == ways) { 108 errortype = tr(" Overlapping railways (with area)");109 errortype = tr("Railways share segment with area"); 109 110 type = OVERLAPPING_RAILWAY_AREA; 110 111 } else { 111 errortype = tr(" Overlapping ways (with area)");112 errortype = tr("Ways share segment with area"); 112 113 type = OVERLAPPING_WAY_AREA; 113 114 }
Note:
See TracChangeset
for help on using the changeset viewer.