2003-10-11 Michael Koch <konqueror@gmx.de>

* java/awt/print/Pageable.java,
	* java/awt/print/Printable.java,
	java/awt/print/PrinterGraphics.java:
	Removed redundant modifiers.

From-SVN: r72348
This commit is contained in:
Michael Koch 2003-10-11 18:16:31 +00:00 committed by Michael Koch
parent 4581f1bc78
commit e1a5ed6c63
4 changed files with 15 additions and 8 deletions

View file

@ -58,13 +58,13 @@ public interface Printable
* This value is returned by the <code>print()</code> method to indicate
* that the requested page number does not exist.
*/
public static final int NO_SUCH_PAGE = 0;
int NO_SUCH_PAGE = 0;
/**
* This value is returned by the <code>print()</code> method to indicate
* that the requested page exists and has been printed.
*/
public static final int PAGE_EXISTS = 1;
int PAGE_EXISTS = 1;
/*************************************************************************/
@ -82,7 +82,7 @@ public static final int PAGE_EXISTS = 1;
*
* @exception PrinterException If an error occurs during printing.
*/
public abstract int
int
print(Graphics graphics, PageFormat format, int page_number)
throws PrinterException;