Changeset 9834 in josm
- Timestamp:
- 2016-02-19T18:00:27+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/MultipolygonTest.java
r9584 r9834 56 56 /** Intersection between multipolygon ways */ 57 57 public static final int CROSSING_WAYS = 1606; 58 /** Style for outer way mismatches / With the currently used mappaint style(s) the style for outer way mismatches polygon*/58 /** Style for outer way mismatches / With the currently used mappaint style(s) the style for outer way mismatches the area style */ 59 59 public static final int OUTER_STYLE_MISMATCH = 1607; 60 60 /** With the currently used mappaint style the style for inner way equals the multipolygon style */ … … 273 273 l.add(wOuter); 274 274 if (!area.equals(areaOuter)) { 275 addError(r, new TestError(this, Severity. WARNING, !areaStyle ? tr("Style for outer way mismatches")276 : tr("With the currently used mappaint style(s) the style for outer way mismatches polygon"),275 addError(r, new TestError(this, Severity.OTHER, !areaStyle ? tr("Style for outer way mismatches") 276 : tr("With the currently used mappaint style(s) the style for outer way mismatches the area style"), 277 277 OUTER_STYLE_MISMATCH, l, Collections.singletonList(wOuter))); 278 278 } else if (areaStyle) { /* style on outer way of multipolygon, but equal to polygon */
Note:
See TracChangeset
for help on using the changeset viewer.