java: remove useless overriding methods
that only call their superclass method Change-Id: I9be2f69be132eec7918964f504c50df0ae8401a2
This commit is contained in:
@@ -27,23 +27,4 @@ import ifc.style._PageProperties;
|
||||
*/
|
||||
public class _PageStyle extends _PageProperties {
|
||||
|
||||
/**
|
||||
* This property is system dependent and printer dependent.
|
||||
* Test is used from _PageProperties
|
||||
* @see ifc.style._PageProperties
|
||||
*/
|
||||
@Override
|
||||
public void _PrinterPaperTray() {
|
||||
super._PrinterPaperTray();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create some valid user defined attributes
|
||||
* Test is used from _PageProperties
|
||||
* @see ifc.style._PageProperties
|
||||
*/
|
||||
@Override
|
||||
public void _UserDefinedAttributes() {
|
||||
super._UserDefinedAttributes();
|
||||
}
|
||||
}
|
||||
|
@@ -40,10 +40,6 @@ public class ParcelContentsFolderDataLoader extends UniFileLoader {
|
||||
return "Office Script Parcel Contents";
|
||||
}
|
||||
|
||||
protected void initialize() {
|
||||
super.initialize();
|
||||
}
|
||||
|
||||
protected FileObject findPrimaryFile(FileObject fo) {
|
||||
if (!fo.isFolder() ||
|
||||
!fo.getName().equals(ParcelZipper.CONTENTS_DIRNAME) ||
|
||||
|
@@ -47,10 +47,6 @@ public class ParcelFolderDataLoader extends UniFileLoader {
|
||||
return "Office Script Parcel Folder";
|
||||
}
|
||||
|
||||
protected void initialize() {
|
||||
super.initialize();
|
||||
}
|
||||
|
||||
protected FileObject findPrimaryFile(FileObject fo) {
|
||||
if (!fo.isFolder())
|
||||
return null;
|
||||
|
@@ -33,11 +33,6 @@ public class Banner extends Canvas {
|
||||
g.dispose();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void update(Graphics g) {
|
||||
super.update(g);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Dimension getPreferredSize() {
|
||||
return new Dimension(137, 358);
|
||||
|
@@ -56,9 +56,4 @@ public class TestApplet extends java.applet.Applet {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void paint( Graphics g) {
|
||||
super.paint( g);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user