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

Encalupse OsmPrimitive.incomplete

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

Legend:

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

    r18614 r18962  
    2727        -->
    2828        <property name="commit.message" value="Publishing: various fixes and improvements, see 18613" />               
    29         <property name="plugin.main.version" value="2457" />
     29        <property name="plugin.main.version" value="2578" />
    3030       
    3131       
  • applications/editors/josm/plugins/waydownloader/src/org/openstreetmap/josm/plugins/waydownloader/WayDownloaderPlugin.java

    r18617 r18962  
    88import java.util.Collection;
    99import java.util.Collections;
    10 import java.util.LinkedList;
    1110import java.util.List;
    1211import java.util.concurrent.Future;
     
    265264        for (Node candidate: candidates) {
    266265            if (!candidate.equals(referenceNode)
    267                     && !candidate.incomplete
     266                    && !candidate.isIncomplete()
    268267                    && candidate.getCoor().equals(referenceNode.getCoor()))
    269268                return candidate;
Note: See TracChangeset for help on using the changeset viewer.