Changeset 10519 in osm for applications
- Timestamp:
- 2008-09-06T21:35:17+02:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/OSMValidatorPlugin.java
r10502 r10519 73 73 UnclosedWays.class, // ID 1101 .. 1199 74 74 TagChecker.class, // ID 1201 .. 1299 75 UnconnectedWays.class, // ID 1301 .. 1399 75 76 }; 76 77 -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/NodesWithSameName.java
r10479 r10519 44 44 for (List<Node> nodes : namesToNodes.values()) { 45 45 if (nodes.size() > 1) { 46 errors.add(new TestError(this, Severity. WARNING,46 errors.add(new TestError(this, Severity.OTHER, 47 47 tr("Nodes with same name"), SAME_NAME, nodes)); 48 48 } -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/OverlappingWays.java
r10064 r10519 136 136 } 137 137 138 errors.add(new TestError(this, Severity.OTHER, tr(errortype), type, prims, duplicated)); 138 errors.add(new TestError(this, type < OVERLAPPING_HIGHWAY_AREA 139 ? Severity.WARNING : Severity.OTHER, tr(errortype), type, prims, duplicated)); 139 140 ways_seen.put(current_ways, duplicated); 140 141 } -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/util/AgregatePrimitivesVisitor.java
r4844 r10519 11 11 * A visitor that aggregates all primitives it visits. 12 12 * <p> 13 * The primitives are sorted according to their ty ep: first nodes, then ways.13 * The primitives are sorted according to their type: first nodes, then ways. 14 14 * 15 15 * @author frsantos
Note:
See TracChangeset
for help on using the changeset viewer.