Changeset 33708 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/AssociatedStreetFixer.java
- Timestamp:
- 2017-10-07T13:53:59+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/AssociatedStreetFixer.java
r32398 r33708 17 17 import org.openstreetmap.josm.data.osm.RelationMember; 18 18 import org.openstreetmap.josm.data.osm.Way; 19 import org.openstreetmap.josm.gui.MainApplication; 19 20 20 21 public class AssociatedStreetFixer extends RelationFixer { … … 134 135 List<Command> commandList = new ArrayList<>(); 135 136 if (fixed) { 136 commandList.add(new ChangeCommand(source, rel)); 137 commandList.add(new ChangeCommand(MainApplication.getLayerManager().getEditDataSet(), source, rel)); 137 138 } 138 139 … … 150 151 newWay.put("name", commonName); 151 152 152 commandList.add(new ChangeCommand(oldWay, newWay)); 153 commandList.add(new ChangeCommand(MainApplication.getLayerManager().getEditDataSet(), oldWay, newWay)); 153 154 } 154 155 */
Note:
See TracChangeset
for help on using the changeset viewer.
