Ignore:
Timestamp:
2009-12-08T08:08:53+01:00 (14 years ago)
Author:
jttt
Message:

Fix #4124 relation - download incomplete results in error

File:
1 edited

Legend:

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

    r2578 r2594  
    4848    private void checkCompleteWaysWithIncompleteNodes() {
    4949        for (Way way:dataSet.getWays()) {
    50             if (!way.isIncomplete()) {
     50            if (way.isUsable()) {
    5151                for (Node node:way.getNodes()) {
    5252                    if (node.isIncomplete()) {
    53                         writer.println(String.format("%s is complete but contains incomplete node '%s'", way, node));
     53                        writer.println(String.format("%s is usable but contains incomplete node '%s'", way, node));
    5454                    }
    5555                }
Note: See TracChangeset for help on using the changeset viewer.