Changeset 13776 in osm for applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/JoinAreasAction.java
- Timestamp:
- 2009-02-17T17:01:25+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/JoinAreasAction.java
r13723 r13776 236 236 237 237 // Delete the remaining inner ways 238 cmds.add(DeleteCommand.delete(innerWays, true)); 238 if(innerWays != null && innerWays.size() > 0) 239 cmds.add(DeleteCommand.delete(innerWays, true)); 239 240 commitCommands("Delete Ways that are not part of an inner multipolygon"); 240 241
Note:
See TracChangeset
for help on using the changeset viewer.