Changeset 5332 in josm
- Timestamp:
- Jul 14, 2012 1:12:11 AM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/DatasetConsistencyTest.java
r5170 r5332 70 70 public void checkCompleteNodesWithoutCoordinates() { 71 71 for (Node node:dataSet.getNodes()) { 72 if (!node.isIncomplete() && (node.getCoor() == null || node.getEastNorth() == null)) {72 if (!node.isIncomplete() && !node.isDeleted() && (node.getCoor() == null || node.getEastNorth() == null)) { 73 73 printError("COMPLETE WITHOUT COORDINATES", "%s is not incomplete but has null coordinates", node); 74 74 }
Note: See TracChangeset
for help on using the changeset viewer.
