Changeset 5332 in josm


Ignore:
Timestamp:
Jul 14, 2012 1:12:11 AM (10 months ago)
Author:
Don-vip
Message:

see #7505, see #7847 - Handle deleted nodes without coordinates in dataset consistency test due to recent API change

File:
1 edited

Legend:

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

    r5170 r5332  
    7070    public void checkCompleteNodesWithoutCoordinates() { 
    7171        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)) { 
    7373                printError("COMPLETE WITHOUT COORDINATES", "%s is not incomplete but has null coordinates", node); 
    7474            } 
Note: See TracChangeset for help on using the changeset viewer.