Changeset 7502 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2014-09-05T14:49:14+02:00 (10 years ago)
Author:
Don-vip
Message:

see #10483 - fix error message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/DatasetConsistencyTest.java

    r7501 r7502  
    109109                // Call isDrawable() as an efficient replacement to previous checks (!deleted, !incomplete, getCoor() != null)
    110110                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);
    112112                }
    113113            }
     
    127127            for (Way w : dataSet.getWays()) {
    128128                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);
    130130                }
    131131            }
Note: See TracChangeset for help on using the changeset viewer.