diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-18 13:32:37 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-24 20:45:17 +0000 |
commit | fe095dada4e83129d49c8cc50501aa224d61e0f9 (patch) | |
tree | d351b1938c77c2640438dfc3427fabb8092baca3 /qadevOOo/tests/java/ifc | |
parent | df633ac5487fd566fbf526808bb015112bd38e77 (diff) |
java,qadev: remove unused parameters and local vars
Change-Id: Ifb9f9374051fe88dc4cd5a7a28b2c8c992ced873
Reviewed-on: https://gerrit.libreoffice.org/13097
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'qadevOOo/tests/java/ifc')
-rw-r--r-- | qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java | 1 | ||||
-rw-r--r-- | qadevOOo/tests/java/ifc/task/_XInteractionHandler.java | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java b/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java index 6bdd3e9e4439..04f880828723 100644 --- a/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java +++ b/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java @@ -48,7 +48,6 @@ public class _XMessageBoxFactory extends MultiMethodTest { com.sun.star.awt.MessageBoxType.ERRORBOX, 1, "The Title", "The Message"); final UITools tools = new UITools( - tParam.getMSF(), UnoRuntime.queryInterface(XWindow.class, mb)); final boolean[] done = new boolean[] { false }; final boolean[] good = new boolean[] { false }; diff --git a/qadevOOo/tests/java/ifc/task/_XInteractionHandler.java b/qadevOOo/tests/java/ifc/task/_XInteractionHandler.java index b118e2611b92..9bfc91b23559 100644 --- a/qadevOOo/tests/java/ifc/task/_XInteractionHandler.java +++ b/qadevOOo/tests/java/ifc/task/_XInteractionHandler.java @@ -55,14 +55,12 @@ public class _XInteractionHandler extends MultiMethodTest { // oObj filled by MultiMethodTest public XInteractionHandler oObj = null ; - private XInteractionRequest request = null ; - /** * Retrieves an object relation. <p> */ @Override public void before() { - request = (XInteractionRequest) + XInteractionRequest request = (XInteractionRequest) tEnv.getObjRelation("XInteractionHandler.Request") ; } |