diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-12 14:05:04 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-12-15 12:36:40 +0000 |
commit | 454ddddd9995ad7c6f865729d160814f5a9f093a (patch) | |
tree | 15b5ee999ec504002cc727284aea0882cc82b01e /wizards | |
parent | f8fbef265329dc2e6e153d22c0a3317fdc0789e1 (diff) |
java: remove some unused fields and variables
Change-Id: I5d6071096307adbe7df0178000346cf915afa3e7
Reviewed-on: https://gerrit.libreoffice.org/13477
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'wizards')
5 files changed, 0 insertions, 24 deletions
diff --git a/wizards/com/sun/star/wizards/form/FormWizard.java b/wizards/com/sun/star/wizards/form/FormWizard.java index fe1791e6b3ae..bf8ba4bbf559 100644 --- a/wizards/com/sun/star/wizards/form/FormWizard.java +++ b/wizards/com/sun/star/wizards/form/FormWizard.java @@ -376,12 +376,6 @@ public class FormWizard extends DatabaseObjectWizard private int ID; // @Override - public int getID() - { - return ID; - } - - // @Override public void setID(String sIncSuffix) { ID = 1; diff --git a/wizards/com/sun/star/wizards/query/QueryWizard.java b/wizards/com/sun/star/wizards/query/QueryWizard.java index c058e4dae049..098513eb8a2e 100644 --- a/wizards/com/sun/star/wizards/query/QueryWizard.java +++ b/wizards/com/sun/star/wizards/query/QueryWizard.java @@ -399,11 +399,6 @@ public class QueryWizard extends DatabaseObjectWizard private int ID; - public int getID() - { - return ID; - } - public void setID(String sIncSuffix) { ID = 1; diff --git a/wizards/com/sun/star/wizards/report/GroupFieldHandler.java b/wizards/com/sun/star/wizards/report/GroupFieldHandler.java index b0dc12782476..16197483acc6 100644 --- a/wizards/com/sun/star/wizards/report/GroupFieldHandler.java +++ b/wizards/com/sun/star/wizards/report/GroupFieldHandler.java @@ -176,12 +176,6 @@ public class GroupFieldHandler extends FieldSelection } } - public int getID() - { - // TODO: here is a good place for a comment, isn't it? - return 2; - } - public void setID(String sIncSuffix) { } diff --git a/wizards/com/sun/star/wizards/report/ReportWizard.java b/wizards/com/sun/star/wizards/report/ReportWizard.java index 708e43bdc3a6..cb6fcf71b8b9 100644 --- a/wizards/com/sun/star/wizards/report/ReportWizard.java +++ b/wizards/com/sun/star/wizards/report/ReportWizard.java @@ -642,11 +642,6 @@ public class ReportWizard extends DatabaseObjectWizard implements XTextListener private int m_nID; - public int getID() - { - return m_nID; - } - public void setID(String sIncSuffix) { m_nID = 1; diff --git a/wizards/com/sun/star/wizards/ui/DBLimitedFieldSelection.java b/wizards/com/sun/star/wizards/ui/DBLimitedFieldSelection.java index b134b77715f6..1754b1c00750 100644 --- a/wizards/com/sun/star/wizards/ui/DBLimitedFieldSelection.java +++ b/wizards/com/sun/star/wizards/ui/DBLimitedFieldSelection.java @@ -37,7 +37,6 @@ public abstract class DBLimitedFieldSelection protected short curtabindex; protected int iCurPosY; protected int FirstHelpIndex; - private int iCompPosX; public DBLimitedFieldSelection(WizardDialog _CurUnoDialog, int iStep, int _iCompPosX, int iCompPosY, int _FirstHelpIndex) { @@ -46,7 +45,6 @@ public abstract class DBLimitedFieldSelection curtabindex = (short) (iStep * 100); sNoField = CurUnoDialog.m_oResource.getResText(UIConsts.RID_REPORT + 8); IStep = Integer.valueOf(iStep); - iCompPosX = _iCompPosX; iCurPosY = iCompPosY; for (int i = 0; i < rowcount; i++) { |