Changeset 34972 in osm for applications/editors/josm/plugins/simplifyarea/src
- Timestamp:
- 2019-04-11T02:04:26+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/simplifyarea/src/org/openstreetmap/josm/plugins/simplifyarea/SimplifyAreaAction.java
r34586 r34972 40 40 import org.openstreetmap.josm.tools.ImageProvider; 41 41 import org.openstreetmap.josm.tools.Shortcut; 42 import org.openstreetmap.josm.tools.Utils; 42 43 43 44 public final class SimplifyAreaAction extends JosmAction { … … 108 109 } 109 110 } 110 final Collection<Way> ways = OsmPrimitive.getFilteredSet(selection, Way.class);111 final Collection<Way> ways = Utils.filteredCollection(selection, Way.class); 111 112 if (ways.isEmpty()) { 112 113 alertSelectAtLeastOneWay();
Note:
See TracChangeset
for help on using the changeset viewer.