diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-08 14:53:00 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-11 12:33:02 +0200 |
commit | 41709cc2688738f091a4b17839fe853caa5a0bfd (patch) | |
tree | 2e12ca2d594ce6767146c25862869ab7e9d2bc14 /odk | |
parent | 2b9ad46b23fdb39cd456cdc543cce346c6f325c3 (diff) |
java: remove unused parameters
Change-Id: I47c618117e079bb2ef90d92c449c8166ea957fa5
Diffstat (limited to 'odk')
5 files changed, 1 insertions, 6 deletions
diff --git a/odk/examples/DevelopersGuide/Charts/ChartHelper.java b/odk/examples/DevelopersGuide/Charts/ChartHelper.java index 2a75a94ef132..7208c58b30f5 100644 --- a/odk/examples/DevelopersGuide/Charts/ChartHelper.java +++ b/odk/examples/DevelopersGuide/Charts/ChartHelper.java @@ -69,7 +69,6 @@ public class ChartHelper } public XChartDocument insertOLEChartInWriter( - String sChartName, Point aUpperLeft, Size aExtent, String sChartServiceName ) @@ -143,7 +142,6 @@ public class ChartHelper } public XChartDocument insertOLEChartInDraw( - String sChartName, Point aUpperLeft, Size aExtent, String sChartServiceName ) diff --git a/odk/examples/DevelopersGuide/Charts/ChartInDraw.java b/odk/examples/DevelopersGuide/Charts/ChartInDraw.java index eff07574eeb0..bf16e57bb40e 100644 --- a/odk/examples/DevelopersGuide/Charts/ChartInDraw.java +++ b/odk/examples/DevelopersGuide/Charts/ChartInDraw.java @@ -78,7 +78,6 @@ public class ChartInDraw // insert a new chart into the "Chart" sheet of the // spreadsheet document XChartDocument aChartDoc = aChartHelper.insertOLEChartInDraw( - "BarChart", aPos, aExtent, "com.sun.star.chart.BarDiagram" ); diff --git a/odk/examples/DevelopersGuide/Charts/ChartInWriter.java b/odk/examples/DevelopersGuide/Charts/ChartInWriter.java index 34678a1eccad..d9585c31ff6c 100644 --- a/odk/examples/DevelopersGuide/Charts/ChartInWriter.java +++ b/odk/examples/DevelopersGuide/Charts/ChartInWriter.java @@ -86,7 +86,6 @@ public class ChartInWriter // insert a new chart into the "Chart" sheet of the // spreadsheet document XChartDocument aChartDoc = aChartHelper.insertOLEChartInWriter( - "BarChart", aPos, aExtent, "com.sun.star.chart.AreaDiagram" ); diff --git a/odk/examples/DevelopersGuide/Charts/ListenAtCalcRangeInDraw.java b/odk/examples/DevelopersGuide/Charts/ListenAtCalcRangeInDraw.java index c1227b2d2721..95b476125c55 100644 --- a/odk/examples/DevelopersGuide/Charts/ListenAtCalcRangeInDraw.java +++ b/odk/examples/DevelopersGuide/Charts/ListenAtCalcRangeInDraw.java @@ -89,7 +89,6 @@ public class ListenAtCalcRangeInDraw implements XChartDataChangeEventListener // insert a new chart into the "Chart" sheet of the // spreadsheet document maChartDocument = aChartHelper.insertOLEChartInDraw( - "ChartWithCalcData", aPos, aExtent, "com.sun.star.chart.XYDiagram" ); diff --git a/odk/examples/DevelopersGuide/Components/SimpleLicense/LicenseTest.java b/odk/examples/DevelopersGuide/Components/SimpleLicense/LicenseTest.java index 76baa819a222..72336546445e 100644 --- a/odk/examples/DevelopersGuide/Components/SimpleLicense/LicenseTest.java +++ b/odk/examples/DevelopersGuide/Components/SimpleLicense/LicenseTest.java @@ -58,7 +58,7 @@ public class LicenseTest { * @param xmultiservicefactoryInitialization A special service factory * could be introduced while initializing. */ - public _LicenseTest(XComponentContext xCompContext) { + public _LicenseTest() { } /** This method returns an array of all supported service names. |