Changeset 18962 in osm for applications/editors/josm/plugins/waydownloader
- Timestamp:
- 2009-12-05T18:54:28+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/waydownloader
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/waydownloader/build.xml
r18614 r18962 27 27 --> 28 28 <property name="commit.message" value="Publishing: various fixes and improvements, see 18613" /> 29 <property name="plugin.main.version" value="2 457" />29 <property name="plugin.main.version" value="2578" /> 30 30 31 31 -
applications/editors/josm/plugins/waydownloader/src/org/openstreetmap/josm/plugins/waydownloader/WayDownloaderPlugin.java
r18617 r18962 8 8 import java.util.Collection; 9 9 import java.util.Collections; 10 import java.util.LinkedList;11 10 import java.util.List; 12 11 import java.util.concurrent.Future; … … 265 264 for (Node candidate: candidates) { 266 265 if (!candidate.equals(referenceNode) 267 && !candidate.incomplete 266 && !candidate.isIncomplete() 268 267 && candidate.getCoor().equals(referenceNode.getCoor())) 269 268 return candidate;
Note:
See TracChangeset
for help on using the changeset viewer.