[cooja] plugins/VariableWatcher: Replaced obsolete Vector by ArrayList

This commit is contained in:
Enrico Joerns 2014-08-28 01:20:28 +02:00
parent 490bc6c5cb
commit 9d8516e9ef
1 changed files with 1 additions and 2 deletions

View File

@ -45,7 +45,6 @@ import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Vector;
import javax.swing.AbstractButton;
import javax.swing.BorderFactory;
import javax.swing.Box;
@ -721,7 +720,7 @@ public class VariableWatcher extends VisPlugin implements MotePlugin {
@Override
public Collection<Element> getConfigXML() {
// Return currently watched variable and type
Vector<Element> config = new Vector<>();
List<Element> config = new ArrayList<>();
Element element;