summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-21 17:13:37 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-29 22:02:58 +0200
commit9140da5ee8cadeeaeea7bced2a2a5386807ce148 (patch)
treed07473e40c73771112c8cc5000997c40dbd6f9e0 /ucb
parent09bf4ae32b81c4087ae1281eb6ce7111bb715c04 (diff)
Fix java "unchecked conversion" warning in UCB module
Change-Id: I8a9bcd81385c17b74b0ee7fc859e324421d141c6
Diffstat (limited to 'ucb')
-rw-r--r--ucb/qa/complex/ucb/UCB.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/qa/complex/ucb/UCB.java b/ucb/qa/complex/ucb/UCB.java
index 9d4a7d376964..8baf758c02be 100644
--- a/ucb/qa/complex/ucb/UCB.java
+++ b/ucb/qa/complex/ucb/UCB.java
@@ -26,7 +26,7 @@ package complex.ucb;
*/
import java.util.List;
-import java.util.Vector;
+import java.util.ArrayList;
import com.sun.star.beans.Property;
import com.sun.star.lang.XMultiServiceFactory;
@@ -121,7 +121,7 @@ public class UCB {
XResultSet xResultSet = xSet.getStaticResultSet();
- List files = new Vector();
+ List<String> files = new ArrayList<String>();
if (xResultSet.first())
{