Changeset 33311 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/RelationFixer.java
- Timestamp:
- 2017-05-13T14:56:51+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/RelationFixer.java
r32395 r33311 2 2 package relcontext.relationfix; 3 3 4 import java.util.*; 4 5 import static org.openstreetmap.josm.tools.I18n.tr; 5 6 6 import java.util.ArrayList;7 import java.util.List;8 7 9 8 import javax.swing.Action; … … 25 24 public RelationFixer(String... types) { 26 25 applicableTypes = new ArrayList<>(); 27 for (String type: types) { 28 applicableTypes.add(type); 29 } 26 applicableTypes.addAll(Arrays.asList(types)); 30 27 } 31 28
Note:
See TracChangeset
for help on using the changeset viewer.