From 41709cc2688738f091a4b17839fe853caa5a0bfd Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 8 Aug 2014 14:53:00 +0200 Subject: java: remove unused parameters Change-Id: I47c618117e079bb2ef90d92c449c8166ea957fa5 --- framework/qa/complex/loadAllDocuments/CheckXComponentLoader.java | 2 +- framework/qa/complex/loadAllDocuments/StatusIndicator.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'framework/qa/complex/loadAllDocuments') 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; } -- cgit