summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-05-03 14:35:04 +0200
committerNoel Grandin <noel@peralex.com>2013-05-06 11:45:50 +0200
commit587c59fbc931b12f4d63d077a78bcaa43ffbf83d (patch)
treec1984991960664faf41ea3e32e3804404aecb22d /qadevOOo
parent95e1ecbf89f75e2b298b931c3cc2e0d5655c31ed (diff)
Java cleanup, Convert Vector to ArrayList
Change-Id: I323a6625f93347e69f3114fc10cb04dc759a539f
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/ifc/beans/_XPropertySet.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/ifc/beans/_XPropertySet.java b/qadevOOo/tests/java/ifc/beans/_XPropertySet.java
index 20940d0381db..1c808d0fed96 100644
--- a/qadevOOo/tests/java/ifc/beans/_XPropertySet.java
+++ b/qadevOOo/tests/java/ifc/beans/_XPropertySet.java
@@ -18,7 +18,7 @@
package ifc.beans;
-import java.util.Vector;
+import java.util.ArrayList;
import lib.MultiMethodTest;
import util.ValueChanger;
@@ -96,9 +96,9 @@ public class _XPropertySet extends MultiMethodTest {
* Constrained, Bound and Normal.
*/
private final class PropsToTest {
- Vector< String > constrained = new Vector< String >();
- Vector< String > bound = new Vector< String >();
- Vector< String > normal = new Vector< String >();
+ ArrayList< String > constrained = new ArrayList< String >();
+ ArrayList< String > bound = new ArrayList< String >();
+ ArrayList< String > normal = new ArrayList< String >();
}
private final PropsToTest PTT = new PropsToTest();