diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-06 08:38:10 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-11 12:33:02 +0200 |
commit | d5a31b221510a506a9c43d2c9f44c55405ce13fd (patch) | |
tree | 16c4444d46fb439a1601d2d4535e1770da318e05 /reportdesign/qa | |
parent | 41709cc2688738f091a4b17839fe853caa5a0bfd (diff) |
java: remove unused parameters
Change-Id: Ifc44c51ddbd21fabaad686bc3d38e2dab54d97aa
Diffstat (limited to 'reportdesign/qa')
-rw-r--r-- | reportdesign/qa/complex/reportdesign/ReportDesignerTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/reportdesign/qa/complex/reportdesign/ReportDesignerTest.java b/reportdesign/qa/complex/reportdesign/ReportDesignerTest.java index b9d6d3953f4d..c0216b1fc30d 100644 --- a/reportdesign/qa/complex/reportdesign/ReportDesignerTest.java +++ b/reportdesign/qa/complex/reportdesign/ReportDesignerTest.java @@ -351,7 +351,7 @@ public class ReportDesignerTest return sFileType; } - private String getOutputPath(int _nType) + private String getOutputPath() { String sOutputPath = util.utils.getOfficeTemp/*Dir*/(getMSF());// (String)param.get( convwatch.PropertyName.DOC_COMPARATOR_OUTPUT_PATH ); @@ -374,7 +374,7 @@ public class ReportDesignerTest */ private void storeComponent(String _sName, Object _xComponent, int _nType) { - String sOutputPath = getOutputPath(_nType); + String sOutputPath = getOutputPath(); // add DocumentPoolName sOutputPath += getDocumentPoolName(_nType); |