diff options
author | Noel Grandin <noel@peralex.com> | 2012-06-27 15:09:57 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-06-29 22:03:00 +0200 |
commit | 10dd7e74c551f3e252405ba0f80a2f143d9129e5 (patch) | |
tree | 1d0edc56a84a20c01248622cd8d8cb1dad0266ef /qadevOOo/runner/org | |
parent | 6cab99d79c30eb9805a23fdd45168f6f4d8e94f3 (diff) |
Java5 update - convert Vector to ArrayList
Change-Id: I630b22da7fbfd2a1c821420d045146e5042c5c28
Diffstat (limited to 'qadevOOo/runner/org')
-rw-r--r-- | qadevOOo/runner/org/openoffice/RunnerService.java | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/qadevOOo/runner/org/openoffice/RunnerService.java b/qadevOOo/runner/org/openoffice/RunnerService.java index e97cb0365948..6a0d131f6386 100644 --- a/qadevOOo/runner/org/openoffice/RunnerService.java +++ b/qadevOOo/runner/org/openoffice/RunnerService.java @@ -18,27 +18,29 @@ package org.openoffice; +import helper.CfgParser; +import helper.ClParser; + +import java.util.ArrayList; + +import lib.TestParameters; import share.LogWriter; import stats.InternalLogWriter; -import lib.TestParameters; import util.DynamicClassLoader; import base.TestBase; -import helper.ClParser; -import helper.CfgParser; -import com.sun.star.beans.XPropertyAccess; + +import com.sun.star.beans.NamedValue; import com.sun.star.beans.PropertyValue; -import com.sun.star.task.XJob; -import com.sun.star.uno.XInterface; +import com.sun.star.beans.XPropertyAccess; import com.sun.star.comp.loader.FactoryHelper; import com.sun.star.lang.XMultiServiceFactory; import com.sun.star.lang.XServiceInfo; import com.sun.star.lang.XSingleServiceFactory; import com.sun.star.lang.XTypeProvider; -import com.sun.star.uno.Type; import com.sun.star.registry.XRegistryKey; -import com.sun.star.beans.NamedValue; - -import java.util.Vector; +import com.sun.star.task.XJob; +import com.sun.star.uno.Type; +import com.sun.star.uno.XInterface; /** * The main class, will call ClParser and CfgParser to <br> @@ -211,7 +213,7 @@ public class RunnerService implements XJob, XServiceInfo, return pVal; } - Vector v = new Vector(600); + ArrayList v = new ArrayList(600); try { // open connection to Jar java.net.JarURLConnection con = |