diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-12 16:27:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-13 08:49:24 +0200 |
commit | 8583da1e934a49791ef8d86668f3d5c3c5dae1d7 (patch) | |
tree | f092f708b7bb9a0a23ae82c1dc499a6e3fde4518 /vcl/qa | |
parent | 68cd011c907d00493bf2bfde531c1e244819596b (diff) |
java: remove unused fields
found by UCDetector
Change-Id: I4a7c56a9918054c23469de5680658e7b501f0165
Diffstat (limited to 'vcl/qa')
-rw-r--r-- | vcl/qa/complex/persistent_window_states/DocumentHandle.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/vcl/qa/complex/persistent_window_states/DocumentHandle.java b/vcl/qa/complex/persistent_window_states/DocumentHandle.java index 0471acb29c6e..c6ce5f3d7ad0 100644 --- a/vcl/qa/complex/persistent_window_states/DocumentHandle.java +++ b/vcl/qa/complex/persistent_window_states/DocumentHandle.java @@ -37,8 +37,7 @@ import helper.WindowListener; public class DocumentHandle { // the component loader to load a document private XComponentLoader xCompLoader = null; - // the document - private XComponent xComp = null; + // the current window private XWindow xWin = null; // a own window listener @@ -85,8 +84,7 @@ public class DocumentHandle { // load document in this frame XComponentLoader xFrameLoader = UnoRuntime.queryInterface(XComponentLoader.class, xFrame); - xComp = xFrameLoader.loadComponentFromURL( - docName, "_self", 0, szArgs); + xFrameLoader.loadComponentFromURL(docName, "_self", 0, szArgs); // wait for the document to load. try { Thread.sleep(10000); |