[cooja] plugins/VariableWatcher: Replaced obsolete Vector by ArrayList
This commit is contained in:
parent
490bc6c5cb
commit
9d8516e9ef
1 changed files with 1 additions and 2 deletions
|
@ -45,7 +45,6 @@ import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Vector;
|
|
||||||
import javax.swing.AbstractButton;
|
import javax.swing.AbstractButton;
|
||||||
import javax.swing.BorderFactory;
|
import javax.swing.BorderFactory;
|
||||||
import javax.swing.Box;
|
import javax.swing.Box;
|
||||||
|
@ -721,7 +720,7 @@ public class VariableWatcher extends VisPlugin implements MotePlugin {
|
||||||
@Override
|
@Override
|
||||||
public Collection<Element> getConfigXML() {
|
public Collection<Element> getConfigXML() {
|
||||||
// Return currently watched variable and type
|
// Return currently watched variable and type
|
||||||
Vector<Element> config = new Vector<>();
|
List<Element> config = new ArrayList<>();
|
||||||
|
|
||||||
Element element;
|
Element element;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue