summaryrefslogtreecommitdiff
path: root/unoxml/qa/complex/unoxml/RDFRepositoryTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/qa/complex/unoxml/RDFRepositoryTest.java')
-rw-r--r--unoxml/qa/complex/unoxml/RDFRepositoryTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/unoxml/qa/complex/unoxml/RDFRepositoryTest.java b/unoxml/qa/complex/unoxml/RDFRepositoryTest.java
index 4356de06e7ac..6c4d2ea0febb 100644
--- a/unoxml/qa/complex/unoxml/RDFRepositoryTest.java
+++ b/unoxml/qa/complex/unoxml/RDFRepositoryTest.java
@@ -768,8 +768,8 @@ public class RDFRepositoryTest
static boolean eq(XQuerySelectResult i_Result,
String[] i_Vars, XNode[][] i_Bindings) throws Exception
{
- String[] vars = (String[]) i_Result.getBindingNames();
- XEnumeration iter = (XEnumeration) i_Result;
+ String[] vars = i_Result.getBindingNames();
+ XEnumeration iter = i_Result;
XNode[][] bindings = toSeqs(iter);
if (bindings.length != i_Bindings.length) {
System.out.println("binding lengths differ: " + i_Bindings.length +