Changeset 30737 in osm for applications/editors/josm/plugins/importvec/src
- Timestamp:
- 2014-10-18T23:07:52+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/importvec/src/org/openstreetmap/josm/plugins/importvec/SvgImportTask.java
r29796 r30737 39 39 */ 40 40 public class SvgImportTask extends PleaseWaitRunnable { 41 LinkedList<Node> nodes = new LinkedList< Node>();42 LinkedList<Way> ways = new LinkedList< Way>();41 LinkedList<Node> nodes = new LinkedList<>(); 42 LinkedList<Way> ways = new LinkedList<>(); 43 43 private List<File> files; 44 44 private boolean canceled; … … 46 46 public SvgImportTask(List<File> files) { 47 47 super(I18n.tr("Importing..."), false); 48 this.files = new ArrayList< File>(files);48 this.files = new ArrayList<>(files); 49 49 } 50 50 … … 184 184 throw new IOException(e); 185 185 } 186 LinkedList<Command> cmds = new LinkedList< Command>();186 LinkedList<Command> cmds = new LinkedList<>(); 187 187 for (Node n : nodes) { 188 188 cmds.add(new AddCommand(n));
Note:
See TracChangeset
for help on using the changeset viewer.