Changeset 19050 in osm for applications/editors/josm/plugins/openstreetbugs
- Timestamp:
- 2009-12-12T17:34:12+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/openstreetbugs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openstreetbugs/build.xml
r18962 r19050 26 26 <attribute name="Plugin-Description" value="Imports issues from OpenStreetBugs"/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/OpenStreetBugs"/> 28 <attribute name="Plugin-Mainversion" value="2 578"/>28 <attribute name="Plugin-Mainversion" value="2620"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/api/DownloadAction.java
r18962 r19050 37 37 import org.openstreetmap.josm.data.osm.DataSet; 38 38 import org.openstreetmap.josm.data.osm.Node; 39 import org.openstreetmap.josm.tools.OsmUrlToBounds;40 39 import org.openstreetmap.josm.plugins.osb.ConfigKeys; 41 40 import org.openstreetmap.josm.plugins.osb.api.util.HttpUtils; 41 import org.openstreetmap.josm.tools.OsmUrlToBounds; 42 42 43 43 public class DownloadAction { … … 83 83 double lon = Double.parseDouble(m.group(2)); 84 84 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); 86 86 osmNode.setCoor(latlon); 87 osmNode.setIncomplete(false);88 87 osmNode.put("id", m.group(1)); 89 88 osmNode.put("note", m.group(4));
Note:
See TracChangeset
for help on using the changeset viewer.