Ignore:
Timestamp:
2009-12-05T18:54:28+01:00 (15 years ago)
Author:
jttt
Message:

Encalupse OsmPrimitive.incomplete

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingLayer.java

    r18597 r18962  
    135135        double minDist = 0;
    136136        for (Way w : dataLayer.data.getWays()) {
    137             if (w.isDeleted() || w.incomplete || w.get("highway")==null) continue;
     137            if (w.isDeleted() || w.isIncomplete() || w.get("highway")==null) continue;
    138138            for (Node n : w.getNodes()) {
    139                 if (n.isDeleted() || n.incomplete) continue;
     139                if (n.isDeleted() || n.isIncomplete()) continue;
    140140
    141141                Point P = Main.map.mapView.getPoint(n);
Note: See TracChangeset for help on using the changeset viewer.