summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_forms
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-18 11:43:40 +0200
committerNoel Grandin <noel@peralex.com>2015-01-05 09:59:03 +0200
commit10039462dfebdf6727529ca38b4105fcd7dd5727 (patch)
treedae25c3bdfa24dac171b10a2ac095f169b883fe5 /qadevOOo/tests/java/mod/_forms
parent82257e9087dc405fdc45cba7d6867be53b5ec9b3 (diff)
java: remove more dead code
found by looking for unused parameters (in Eclipse) Change-Id: I03cf9bc8312e59747b2d0ac153ee2fc8d76be893
Diffstat (limited to 'qadevOOo/tests/java/mod/_forms')
-rw-r--r--qadevOOo/tests/java/mod/_forms/OListBoxModel.java4
-rw-r--r--qadevOOo/tests/java/mod/_forms/OTimeModel.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/mod/_forms/OListBoxModel.java b/qadevOOo/tests/java/mod/_forms/OListBoxModel.java
index a1b7f1e200aa..8bc8f341f367 100644
--- a/qadevOOo/tests/java/mod/_forms/OListBoxModel.java
+++ b/qadevOOo/tests/java/mod/_forms/OListBoxModel.java
@@ -179,7 +179,7 @@ public class OListBoxModel extends GenericModelTest {
TestEnvironment tEnv = super.createTestEnvironment(Param, log);
tEnv.addObjRelation("XUpdateBroadcaster.Checker",
- new Checker(m_XFormLoader, m_XPS, m_XCtrl, m_ChangePropertyName, m_ChangePropertyValue));
+ new Checker(m_XFormLoader, m_XPS, m_XCtrl, m_ChangePropertyName));
return tEnv;
}
@@ -190,7 +190,7 @@ public class OListBoxModel extends GenericModelTest {
private XInterface ctrl = null;
private String ChangePropertyName = null;
- public Checker(XLoadable xl, XPropertySet ps, XInterface ctrl, String ChangePropertyName, Object ChangePropertyValue) {
+ public Checker(XLoadable xl, XPropertySet ps, XInterface ctrl, String ChangePropertyName) {
formLoaderF = xl;
this.ps = ps;
this.ctrl = ctrl;
diff --git a/qadevOOo/tests/java/mod/_forms/OTimeModel.java b/qadevOOo/tests/java/mod/_forms/OTimeModel.java
index c56a81bf1bb4..ce2603f0038a 100644
--- a/qadevOOo/tests/java/mod/_forms/OTimeModel.java
+++ b/qadevOOo/tests/java/mod/_forms/OTimeModel.java
@@ -172,7 +172,7 @@ public class OTimeModel extends GenericModelTest {
exclude.add("FormatKey");
tEnv.addObjRelation("XUpdateBroadcaster.Checker",
- new Checker(m_XFormLoader, m_XPS, m_XCtrl, m_ChangePropertyName, m_ChangePropertyValue));
+ new Checker(m_XFormLoader, m_XPS, m_XCtrl));
return tEnv;
}
@@ -181,7 +181,7 @@ public class OTimeModel extends GenericModelTest {
private XPropertySet ps = null;
private XInterface ctrl = null;
- public Checker(XLoadable xl, XPropertySet ps, XInterface ctrl, String ChangePropertyName, Object ChangePropertyValue) {
+ public Checker(XLoadable xl, XPropertySet ps, XInterface ctrl) {
formLoaderF = xl;
this.ps = ps;
this.ctrl = ctrl;