Changeset 28813 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/ReconstructPolygonAction.java
- Timestamp:
- 2012-10-15T23:04:55+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/ReconstructPolygonAction.java
r26882 r28813 64 64 List<Way> newSelection = new ArrayList<Way>(); 65 65 List<Command> commands = new ArrayList<Command>(); 66 commands.add(new DeleteCommand(r)); 66 Command c = DeleteCommand.delete(Main.main.getEditLayer(), Collections.singleton(r), true, true); 67 if( c == null ) 68 return; 69 commands.add(c); 67 70 68 71 for( JoinedPolygon p : mpc.outerWays ) {
Note:
See TracChangeset
for help on using the changeset viewer.
