summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_fwl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-27 15:40:17 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-29 22:03:01 +0200
commitb65017a2a7af290f6681da7b197a52efe83d5185 (patch)
tree06f71a435ba200d044109469b13be7c8f5dbe950 /qadevOOo/tests/java/mod/_fwl
parent33ec740d1438c3dddf8e1974757ed05bb76425ca (diff)
Java5 update - usage generics where possible
Change-Id: I12f8c448961919e153047e28fee2a0acf3af1002
Diffstat (limited to 'qadevOOo/tests/java/mod/_fwl')
-rw-r--r--qadevOOo/tests/java/mod/_fwl/FilterFactory.java4
-rw-r--r--qadevOOo/tests/java/mod/_fwl/TypeDetection.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/mod/_fwl/FilterFactory.java b/qadevOOo/tests/java/mod/_fwl/FilterFactory.java
index 1e8bae332788..bedbb6a9e4c3 100644
--- a/qadevOOo/tests/java/mod/_fwl/FilterFactory.java
+++ b/qadevOOo/tests/java/mod/_fwl/FilterFactory.java
@@ -119,8 +119,8 @@ public class FilterFactory extends TestCase {
// XMSF
- ArrayList vFTypes = new ArrayList();
- ArrayList vFArgs = new ArrayList();
+ ArrayList<String> vFTypes = new ArrayList<String>();
+ ArrayList<Object[]> vFArgs = new ArrayList<Object[]>();
for (int i = 0; i < filterNames.length; i++) {
PropertyValue[] filterProps = null;
try {
diff --git a/qadevOOo/tests/java/mod/_fwl/TypeDetection.java b/qadevOOo/tests/java/mod/_fwl/TypeDetection.java
index 94284953abd6..4f5ad37b75aa 100644
--- a/qadevOOo/tests/java/mod/_fwl/TypeDetection.java
+++ b/qadevOOo/tests/java/mod/_fwl/TypeDetection.java
@@ -149,7 +149,7 @@ public class TypeDetection extends TestCase {
fileURL = utils.getOfficeTemp((XMultiServiceFactory)Param.getMSF() );
fileURL = fileURL + "bookmarks.oot";
- XStorable store = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDoc);
+ XStorable store = UnoRuntime.queryInterface(XStorable.class, xTextDoc);
System.out.println(fileURL);
store.storeToURL(fileURL, new PropertyValue[0]);