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

Encalupse OsmPrimitive.incomplete

Location:
applications/editors/josm/plugins/routing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/routing/build.xml

    r18597 r18962  
    4444                <attribute name="Plugin-Description" value="Provides routing capabilities."/>
    4545                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Routing"/>
    46                 <attribute name="Plugin-Mainversion" value="2450"/>
     46                <attribute name="Plugin-Mainversion" value="2578"/>
    4747                <attribute name="Plugin-Stage" value="50"/>
    4848                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
  • 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.