From f124688cfdfbe96ff2be5ab44ea5023725548146 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 4 Aug 2014 16:12:55 +0200 Subject: java: remove various unused variables Change-Id: Id9f30938f594cb6fe73bf40adfffa65ec1b42cd1 --- unoxml/qa/complex/unoxml/DOMTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unoxml/qa') 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 */ } -- cgit