Changeset 33615 in osm for applications/editors
- Timestamp:
- 2017-09-16T13:10:18+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/pointInfo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pointInfo/build.xml
r33549 r33615 3 3 4 4 <!-- enter the SVN commit message --> 5 <property name="commit.message" value="PointInfo: Replace depricated functions."/>5 <property name="commit.message" value="PointInfo: Replace depricated AddCommand function."/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 7 <property name="plugin.main.version" value="12666"/> -
applications/editors/josm/plugins/pointInfo/src/org/openstreetmap/josm/plugins/pointinfo/ruian/RuianRecord.java
r33549 r33615 1110 1110 node = new Node(new LatLon(m_coor_lat, m_coor_lon)); 1111 1111 } 1112 commands.add(new AddCommand( node));1112 commands.add(new AddCommand(MainApplication.getLayerManager().getEditDataSet(), node)); 1113 1113 1114 1114 Collection<OsmPrimitive> coll = new LinkedList<>();
Note:
See TracChangeset
for help on using the changeset viewer.