summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-04 16:12:55 +0200
committerNoel Grandin <noel@peralex.com>2014-08-05 11:31:49 +0200
commitf124688cfdfbe96ff2be5ab44ea5023725548146 (patch)
tree4874bf2b2504979b9733f200e05b68034c7eaefe /unoxml
parent36a74fe54a0cd99372ea646af31ce41ac5ec5b08 (diff)
java: remove various unused variables
Change-Id: Id9f30938f594cb6fe73bf40adfffa65ec1b42cd1
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/qa/complex/unoxml/DOMTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/unoxml/qa/complex/unoxml/DOMTest.java b/unoxml/qa/complex/unoxml/DOMTest.java
index 3a44eaf4a41b..0211da376eed 100644
--- a/unoxml/qa/complex/unoxml/DOMTest.java
+++ b/unoxml/qa/complex/unoxml/DOMTest.java
@@ -2560,7 +2560,7 @@ public class DOMTest
}
try {
- XNode xResult = xXPathAPI.selectSingleNode(xDoc, "//pre:foo");
+ xXPathAPI.selectSingleNode(xDoc, "//pre:foo");
fail("XXPathAPI.selectSingleNode");
} catch (XPathException e) { /* expected */ }
xXPathAPI.registerNS("pre", ns);
@@ -2572,7 +2572,7 @@ public class DOMTest
xXPathAPI.unregisterNS("pre", ns);
try {
- XNode xResult = xXPathAPI.selectSingleNode(xDoc, "//pre:foo");
+ xXPathAPI.selectSingleNode(xDoc, "//pre:foo");
fail("XXPathAPI.unregisterNS");
} catch (XPathException e) { /* expected */ }