Ignore:
Timestamp:
2009-12-12T17:34:12+01:00 (15 years ago)
Author:
jttt
Message:

Fix compilation problems

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

Legend:

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

    r18962 r19050  
    2626                <attribute name="Plugin-Description" value="Imports issues from OpenStreetBugs"/>
    2727                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/OpenStreetBugs"/>
    28                 <attribute name="Plugin-Mainversion" value="2578"/>
     28                <attribute name="Plugin-Mainversion" value="2620"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/api/DownloadAction.java

    r18962 r19050  
    3737import org.openstreetmap.josm.data.osm.DataSet;
    3838import org.openstreetmap.josm.data.osm.Node;
    39 import org.openstreetmap.josm.tools.OsmUrlToBounds;
    4039import org.openstreetmap.josm.plugins.osb.ConfigKeys;
    4140import org.openstreetmap.josm.plugins.osb.api.util.HttpUtils;
     41import org.openstreetmap.josm.tools.OsmUrlToBounds;
    4242
    4343public class DownloadAction {
     
    8383            double lon = Double.parseDouble(m.group(2));
    8484            LatLon latlon = new LatLon(lat, lon);
    85             Node osmNode = new Node(Long.parseLong(m.group(1)));
     85            Node osmNode = new Node(Long.parseLong(m.group(1)), 1);
    8686            osmNode.setCoor(latlon);
    87             osmNode.setIncomplete(false);
    8887            osmNode.put("id", m.group(1));
    8988            osmNode.put("note", m.group(4));
Note: See TracChangeset for help on using the changeset viewer.