Changeset 18962 in osm for applications/editors/josm/plugins/waydownloader/src
- Timestamp:
- 2009-12-05T18:54:28+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.