Changeset 5333 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2012-07-14T02:16:39+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/DatasetConsistencyTest.java
r5332 r5333 70 70 public void checkCompleteNodesWithoutCoordinates() { 71 71 for (Node node:dataSet.getNodes()) { 72 if (!node.isIncomplete() && !node.isDeleted() && (node.getCoor() == null || node.getEastNorth() == null)) {72 if (!node.isIncomplete() && node.isVisible() && (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.