Changeset 14401 in josm for trunk/src/org
- Timestamp:
- 2018-11-02T01:39:42+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/OverlappingWays.java
r14398 r14401 35 35 * 36 36 * @author frsantos 37 * @since 3669 37 38 */ 38 39 public class OverlappingWays extends Test { … … 47 48 protected static final int OVERLAPPING_RAILWAY_AREA = 112; 48 49 protected static final int OVERLAPPING_WAY_AREA = 113; 49 protected static final int OVERLAPPING_AREA = 120;50 50 protected static final int DUPLICATE_WAY_SEGMENT = 121; 51 51 … … 119 119 if (area > 0) { 120 120 if (ways == 0 || duplicated.size() == area) { 121 errortype = tr("Areas share segment"); 122 type = OVERLAPPING_AREA; 121 continue; // We previously issued an annoying "Areas share segment" warning 123 122 } else if (highway == ways) { 124 123 errortype = tr("Highways share segment with area");
Note:
See TracChangeset
for help on using the changeset viewer.