summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/complexlib/ShowTargets.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/complexlib/ShowTargets.java')
-rw-r--r--qadevOOo/runner/complexlib/ShowTargets.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/qadevOOo/runner/complexlib/ShowTargets.java b/qadevOOo/runner/complexlib/ShowTargets.java
index 89bc33daa8e2..335614c0d2e4 100644
--- a/qadevOOo/runner/complexlib/ShowTargets.java
+++ b/qadevOOo/runner/complexlib/ShowTargets.java
@@ -18,6 +18,8 @@
package complexlib;
+import java.util.ArrayList;
+
/**
*
* @author fs93730
@@ -31,8 +33,8 @@ public class ShowTargets
public static void main( String[] args )
{
- java.util.Vector targets = new java.util.Vector();
- java.util.Vector descs = new java.util.Vector();
+ ArrayList targets = new ArrayList();
+ ArrayList descs = new ArrayList();
targets.add( "run" );
descs.add( "runs all complex tests in this module" );