Attribute.java, [...]: Removing redundant modifiers.

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

	* javax/print/attribute/Attribute.java,
	javax/print/attribute/AttributeSet.java,
	javax/print/attribute/PrintRequestAttributeSet.java:
	Removing redundant modifiers.

From-SVN: r72364
This commit is contained in:
Michael Koch 2003-10-11 19:15:08 +00:00 committed by Michael Koch
parent e1feb64f5d
commit 89889f2494
4 changed files with 24 additions and 17 deletions

View file

@ -46,10 +46,10 @@ public interface PrintRequestAttributeSet extends AttributeSet
* Adds the specified attribute value to this attribute set
* if it is not already present.
*/
public boolean add (Attribute attribute);
boolean add (Attribute attribute);
/**
* Adds all of the elements in the specified set to this attribute.
*/
public boolean addAll (AttributeSet attributes);
boolean addAll (AttributeSet attributes);
}