Kaydet (Commit) 822b4fde authored tarafından Noel Grandin's avatar Noel Grandin

java: unnecessary method overrides

these methods did nothing but call their super implementation.
found by CodePro

Change-Id: Iba40d10ca1db0b4a3b4b971cacc2f299c4d5f389
üst 93a85df2
...@@ -102,15 +102,6 @@ public class OButtonModel extends GenericModelTest { ...@@ -102,15 +102,6 @@ public class OButtonModel extends GenericModelTest {
super.m_LCShape_Type = "CommandButton"; super.m_LCShape_Type = "CommandButton";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
......
...@@ -117,16 +117,6 @@ public class OCheckBoxModel extends GenericModelTest { ...@@ -117,16 +117,6 @@ public class OCheckBoxModel extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
......
...@@ -132,16 +132,6 @@ public class OComboBoxModel extends GenericModelTest { ...@@ -132,16 +132,6 @@ public class OComboBoxModel extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
......
...@@ -128,16 +128,6 @@ public class OCurrencyModel extends GenericModelTest { ...@@ -128,16 +128,6 @@ public class OCurrencyModel extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
......
...@@ -147,15 +147,6 @@ public class ODateModel extends GenericModelTest { ...@@ -147,15 +147,6 @@ public class ODateModel extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
......
...@@ -139,16 +139,6 @@ public class OEditModel extends GenericModelTest { ...@@ -139,16 +139,6 @@ public class OEditModel extends GenericModelTest {
super.m_ChangePropertyName = "Text"; super.m_ChangePropertyName = "Text";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
......
...@@ -96,16 +96,6 @@ public class OFixedTextModel extends GenericModelTest { ...@@ -96,16 +96,6 @@ public class OFixedTextModel extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
......
...@@ -131,17 +131,8 @@ public class OFormattedFieldWrapper extends GenericModelTest { ...@@ -131,17 +131,8 @@ public class OFormattedFieldWrapper extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} /**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
} }
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
* @param Param the test parameter * @param Param the test parameter
......
...@@ -151,15 +151,6 @@ public class OGridControlModel extends GenericModelTest { ...@@ -151,15 +151,6 @@ public class OGridControlModel extends GenericModelTest {
super.m_LCShape_Type = "GridControl"; super.m_LCShape_Type = "GridControl";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
......
...@@ -96,16 +96,6 @@ public class OGroupBoxModel extends GenericModelTest { ...@@ -96,16 +96,6 @@ public class OGroupBoxModel extends GenericModelTest {
super.m_ChangePropertyName = "Text"; super.m_ChangePropertyName = "Text";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
......
...@@ -100,16 +100,6 @@ public class OImageButtonModel extends GenericModelTest { ...@@ -100,16 +100,6 @@ public class OImageButtonModel extends GenericModelTest {
super.m_LCShape_Type = "ImageButton"; super.m_LCShape_Type = "ImageButton";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
......
...@@ -130,17 +130,8 @@ public class OImageControlModel extends GenericModelTest { ...@@ -130,17 +130,8 @@ public class OImageControlModel extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} /**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
} }
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
* @param Param the test parameter * @param Param the test parameter
......
...@@ -153,16 +153,6 @@ public class OListBoxModel extends GenericModelTest { ...@@ -153,16 +153,6 @@ public class OListBoxModel extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
......
...@@ -48,16 +48,6 @@ public class ONavigationBarModel extends GenericModelTest { ...@@ -48,16 +48,6 @@ public class ONavigationBarModel extends GenericModelTest {
super.m_LCShape_Type = "NavigationToolBar"; super.m_LCShape_Type = "NavigationToolBar";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
......
...@@ -129,17 +129,8 @@ public class ONumericModel extends GenericModelTest { ...@@ -129,17 +129,8 @@ public class ONumericModel extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} /**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
} }
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
* @param Param the test parameter * @param Param the test parameter
......
...@@ -134,17 +134,8 @@ public class OPatternModel extends GenericModelTest { ...@@ -134,17 +134,8 @@ public class OPatternModel extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} /**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
} }
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
* @param Param the test parameter * @param Param the test parameter
......
...@@ -132,16 +132,6 @@ public class ORadioButtonModel extends GenericModelTest { ...@@ -132,16 +132,6 @@ public class ORadioButtonModel extends GenericModelTest {
super.m_LCShape_Type = "GroupBox"; super.m_LCShape_Type = "GroupBox";
} }
/**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
}
/** /**
* calls <CODE>createTestEnvironment()</CODE> from it's super class * calls <CODE>createTestEnvironment()</CODE> from it's super class
......
...@@ -143,14 +143,6 @@ public class OTimeModel extends GenericModelTest { ...@@ -143,14 +143,6 @@ public class OTimeModel extends GenericModelTest {
super.m_LCShape_Type = "FixedText"; super.m_LCShape_Type = "FixedText";
} /**
* calls <CODE>cleanup()</CODE> from it's super class
* @param tParam the test parameter
* @param log the log writer
*/
@Override
protected void cleanup(TestParameters tParam, PrintWriter log) {
super.cleanup(tParam, log);
} }
/** /**
......
...@@ -92,12 +92,6 @@ public class TextView ...@@ -92,12 +92,6 @@ public class TextView
super.SetObject (xObject); super.SetObject (xObject);
} }
@Override
synchronized public void Destroy ()
{
super.Destroy();
}
@Override @Override
synchronized public void Update () synchronized public void Update ()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment