Changeset 16434 in osm for applications/editors/josm/plugins
- Timestamp:
- 2009-07-11T15:39:10+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/UntaggedWay.java
r16346 r16434 33 33 /** One node way error */ 34 34 protected static final int ONE_NODE_WAY = 304; 35 /** Unnamed junction error */ 36 protected static final int UNNAMED_JUNCTION = 305; 35 37 36 38 private LinkedList<Way> multipolygonways; … … 88 90 errors.add( new TestError(this, Severity.WARNING, tr("Unnamed ways"), UNNAMED_WAY, w) ); 89 91 else if(isRoundabout) 90 errors.add( new TestError(this, Severity.WARNING, tr("Unnamed Junction"), UNNAMED_WAY, w) );92 errors.add( new TestError(this, Severity.WARNING, tr("Unnamed junction"), UNNAMED_JUNCTION, w) ); 91 93 } 92 94 }
Note:
See TracChangeset
for help on using the changeset viewer.