Changeset 7502 in josm
- Timestamp:
- 2014-09-05T14:49:14+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/DatasetConsistencyTest.java
r7501 r7502 109 109 // Call isDrawable() as an efficient replacement to previous checks (!deleted, !incomplete, getCoor() != null) 110 110 if (n.isDrawable() && !dataSet.containsNode(n)) { 111 printError("SEARCH NODES", "%s not found using Dataset. searchNodes()", n);111 printError("SEARCH NODES", "%s not found using Dataset.containsNode()", n); 112 112 } 113 113 } … … 127 127 for (Way w : dataSet.getWays()) { 128 128 if (!w.isIncomplete() && !w.isDeleted() && w.getNodesCount() >= 2 && !dataSet.containsWay(w)) { 129 printError("SEARCH WAYS", "%s not found using Dataset. searchWays()", w);129 printError("SEARCH WAYS", "%s not found using Dataset.containsWay()", w); 130 130 } 131 131 }
Note:
See TracChangeset
for help on using the changeset viewer.