Changeset 29908 in osm for applications/editors
- Timestamp:
- 2013-09-01T23:28:50+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/waydownloader
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/waydownloader/build.xml
r29854 r29908 5 5 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="6 162"/>7 <property name="plugin.main.version" value="6203"/> 8 8 9 9 <property name="plugin.author" value="Harry Wood"/> -
applications/editors/josm/plugins/waydownloader/src/org/openstreetmap/josm/plugins/waydownloader/WayDownloaderPlugin.java
r29771 r29908 266 266 private Node findDuplicateNode(Node referenceNode) { 267 267 DataSet ds = Main.main.getCurrentDataSet(); 268 List<Node> candidates = ds.searchNodes(new B Box(new Bounds(referenceNode.getCoor(), 0.0003, 0.0005)));268 List<Node> candidates = ds.searchNodes(new Bounds(referenceNode.getCoor(), 0.0003, 0.0005).toBBox()); 269 269 for (Node candidate: candidates) { 270 270 if (!candidate.equals(referenceNode)
Note:
See TracChangeset
for help on using the changeset viewer.