summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/lib
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-27 15:09:57 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-29 22:03:00 +0200
commit10dd7e74c551f3e252405ba0f80a2f143d9129e5 (patch)
tree1d0edc56a84a20c01248622cd8d8cb1dad0266ef /qadevOOo/runner/lib
parent6cab99d79c30eb9805a23fdd45168f6f4d8e94f3 (diff)
Java5 update - convert Vector to ArrayList
Change-Id: I630b22da7fbfd2a1c821420d045146e5042c5c28
Diffstat (limited to 'qadevOOo/runner/lib')
-rw-r--r--qadevOOo/runner/lib/MultiMethodTest.java13
1 files changed, 6 insertions, 7 deletions
diff --git a/qadevOOo/runner/lib/MultiMethodTest.java b/qadevOOo/runner/lib/MultiMethodTest.java
index fdd0d746d0ae..004dd448fb74 100644
--- a/qadevOOo/runner/lib/MultiMethodTest.java
+++ b/qadevOOo/runner/lib/MultiMethodTest.java
@@ -21,15 +21,14 @@ import java.io.PrintWriter;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
-import java.util.Vector;
-
-import com.sun.star.uno.UnoRuntime;
-import com.sun.star.uno.XInterface;
+import java.util.ArrayList;
import share.DescEntry;
-import lib.TestParameters;
import stats.Summarizer;
+import com.sun.star.uno.UnoRuntime;
+import com.sun.star.uno.XInterface;
+
/**
* The class supports method based interface tests development.
*
@@ -96,9 +95,9 @@ public class MultiMethodTest
*/
protected TestResult tRes;
/**
- * Contains names of the methods have been alreadycalled
+ * Contains names of the methods have been already called
*/
- private Vector methCalled = new Vector(10);
+ private ArrayList methCalled = new ArrayList(10);
/**
* Disposes the test environment, which was corrupted by the test.