Changeset 10526 in osm for applications/editors/josm/plugins/validator/src
- Timestamp:
- 2008-09-06T23:38:00+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/UnconnectedWays.java
r10521 r10526 92 92 for(Map.Entry<Node, Way> error : map.entrySet()) 93 93 { 94 errors.add(new TestError(this, Severity. WARNING,94 errors.add(new TestError(this, Severity.OTHER, 95 95 tr("Way node near other way"), UNCONNECTED_WAYS, 96 96 Arrays.asList(error.getKey(), error.getValue()))); … … 110 110 for(Map.Entry<Node, Way> error : map.entrySet()) 111 111 { 112 errors.add(new TestError(this, Severity. WARNING,112 errors.add(new TestError(this, Severity.OTHER, 113 113 tr("Connected way end node near other way"), UNCONNECTED_WAYS, 114 114 Arrays.asList(error.getKey(), error.getValue())));
Note:
See TracChangeset
for help on using the changeset viewer.