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

Fix compilation problems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.