Index: trunk/src/org/openstreetmap/josm/data/osm/DatasetConsistencyTest.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/DatasetConsistencyTest.java	(revision 7501)
+++ trunk/src/org/openstreetmap/josm/data/osm/DatasetConsistencyTest.java	(revision 7502)
@@ -109,5 +109,5 @@
                 // Call isDrawable() as an efficient replacement to previous checks (!deleted, !incomplete, getCoor() != null)
                 if (n.isDrawable() && !dataSet.containsNode(n)) {
-                    printError("SEARCH NODES", "%s not found using Dataset.searchNodes()", n);
+                    printError("SEARCH NODES", "%s not found using Dataset.containsNode()", n);
                 }
             }
@@ -127,5 +127,5 @@
             for (Way w : dataSet.getWays()) {
                 if (!w.isIncomplete() && !w.isDeleted() && w.getNodesCount() >= 2 && !dataSet.containsWay(w)) {
-                    printError("SEARCH WAYS", "%s not found using Dataset.searchWays()", w);
+                    printError("SEARCH WAYS", "%s not found using Dataset.containsWay()", w);
                 }
             }
