summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_streams.uno/MarkableOutputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/mod/_streams.uno/MarkableOutputStream.java')
-rw-r--r--qadevOOo/tests/java/mod/_streams.uno/MarkableOutputStream.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/tests/java/mod/_streams.uno/MarkableOutputStream.java b/qadevOOo/tests/java/mod/_streams.uno/MarkableOutputStream.java
index 98d1efcff355..dd3666207da0 100644
--- a/qadevOOo/tests/java/mod/_streams.uno/MarkableOutputStream.java
+++ b/qadevOOo/tests/java/mod/_streams.uno/MarkableOutputStream.java
@@ -26,7 +26,7 @@ import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;
import java.io.PrintWriter;
-import java.util.Vector;
+import java.util.ArrayList;
import lib.StatusException;
import lib.TestCase;
import lib.TestEnvironment;
@@ -127,7 +127,7 @@ public class MarkableOutputStream extends TestCase {
oObj = (XInterface) mostream;
// all data types for writing to an XDataInputStream
- Vector data = new Vector() ;
+ ArrayList<Object> data = new ArrayList<Object>() ;
data.add(new Boolean(true)) ;
data.add(new Byte((byte)123)) ;
data.add(new Character((char)1234)) ;