summaryrefslogtreecommitdiff
path: root/framework/qa/complex/loadAllDocuments
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-08 14:53:00 +0200
committerNoel Grandin <noel@peralex.com>2014-08-11 12:33:02 +0200
commit41709cc2688738f091a4b17839fe853caa5a0bfd (patch)
tree2e12ca2d594ce6767146c25862869ab7e9d2bc14 /framework/qa/complex/loadAllDocuments
parent2b9ad46b23fdb39cd456cdc543cce346c6f325c3 (diff)
java: remove unused parameters
Change-Id: I47c618117e079bb2ef90d92c449c8166ea957fa5
Diffstat (limited to 'framework/qa/complex/loadAllDocuments')
-rw-r--r--framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java2
-rw-r--r--framework/qa/complex/loadAllDocuments/StatusIndicator.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java b/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java
index 3e2b37bda924..955fa0b1dd38 100644
--- a/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java
+++ b/framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java
@@ -219,7 +219,7 @@ public class CheckXComponentLoader
@Test public void checkUsingOfMediaDescriptor()
{
InteractionHandler xHandler = new InteractionHandler();
- StatusIndicator xIndicator = new StatusIndicator(StatusIndicator.SHOWSTATUS_LOG);
+ StatusIndicator xIndicator = new StatusIndicator();
PropertyValue[] lProps = new PropertyValue[3];
diff --git a/framework/qa/complex/loadAllDocuments/StatusIndicator.java b/framework/qa/complex/loadAllDocuments/StatusIndicator.java
index d83651ed861d..691b4c76b605 100644
--- a/framework/qa/complex/loadAllDocuments/StatusIndicator.java
+++ b/framework/qa/complex/loadAllDocuments/StatusIndicator.java
@@ -53,7 +53,7 @@ public class StatusIndicator implements com.sun.star.task.XStatusIndicator
* ctor
* It's initialize an object of this class with default values.
*/
- public StatusIndicator( int nOut)
+ public StatusIndicator()
{
m_bWasUsed = false;
}