From 89889f24945f9585c1ce5a88a9ace26c97a7c28a Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Sat, 11 Oct 2003 19:15:08 +0000 Subject: Attribute.java, [...]: Removing redundant modifiers. 2003-10-11 Michael Koch * javax/print/attribute/Attribute.java, javax/print/attribute/AttributeSet.java, javax/print/attribute/PrintRequestAttributeSet.java: Removing redundant modifiers. From-SVN: r72364 --- libjava/javax/print/attribute/AttributeSet.java | 26 ++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'libjava/javax/print/attribute/AttributeSet.java') diff --git a/libjava/javax/print/attribute/AttributeSet.java b/libjava/javax/print/attribute/AttributeSet.java index 325251a..7276f92 100644 --- a/libjava/javax/print/attribute/AttributeSet.java +++ b/libjava/javax/print/attribute/AttributeSet.java @@ -46,32 +46,32 @@ public interface 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); - public void clear (); + void clear (); - public boolean containsKey (Class category); + boolean containsKey (Class category); - public boolean containsValue (Attribute attribute); + boolean containsValue (Attribute attribute); - public boolean equals (Object obj); + boolean equals (Object obj); - public Attribute get (Class Category); + Attribute get (Class Category); - public int hashCode (); + int hashCode (); - public boolean isEmpty (); + boolean isEmpty (); - public boolean remove (Attribute attribute); + boolean remove (Attribute attribute); - public boolean remove (Class category); + boolean remove (Class category); - public int size (); + int size (); - public Attribute[] toArray (); + Attribute[] toArray (); } -- cgit v1.1