Changeset 29908 in osm


Ignore:
Timestamp:
2013-09-01T23:28:50+02:00 (11 years ago)
Author:
donvip
Message:

[josm_waydownloader] fix #josm9037 - update plugin to JOSM 6203

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

Legend:

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

    r29854 r29908  
    55    <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    7     <property name="plugin.main.version" value="6162"/>
     7    <property name="plugin.main.version" value="6203"/>
    88
    99    <property name="plugin.author" value="Harry Wood"/>
  • applications/editors/josm/plugins/waydownloader/src/org/openstreetmap/josm/plugins/waydownloader/WayDownloaderPlugin.java

    r29771 r29908  
    266266    private Node findDuplicateNode(Node referenceNode) {
    267267        DataSet ds = Main.main.getCurrentDataSet();
    268         List<Node> candidates = ds.searchNodes(new BBox(new Bounds(referenceNode.getCoor(), 0.0003, 0.0005)));
     268        List<Node> candidates = ds.searchNodes(new Bounds(referenceNode.getCoor(), 0.0003, 0.0005).toBBox());
    269269        for (Node candidate: candidates) {
    270270            if (!candidate.equals(referenceNode)
Note: See TracChangeset for help on using the changeset viewer.