2003-10-11 Michael Koch <konqueror@gmx.de>
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 11 Oct 2003 19:15:08 +0000 (19:15 +0000)
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 11 Oct 2003 19:15:08 +0000 (19:15 +0000)
* javax/print/attribute/Attribute.java,
javax/print/attribute/AttributeSet.java,
javax/print/attribute/PrintRequestAttributeSet.java:
Removing redundant modifiers.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72364 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/javax/print/attribute/Attribute.java
libjava/javax/print/attribute/AttributeSet.java
libjava/javax/print/attribute/PrintRequestAttributeSet.java

index 1e232cd..2bd3eff 100644 (file)
@@ -1,5 +1,12 @@
 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.
+
+2003-10-11  Michael Koch  <konqueror@gmx.de>
+
        * javax/sql/ConnectionEventListener.java,
        javax/sql/ConnectionPoolDataSource.java,
        javax/sql/DataSource.java,
index babf200..1af7e70 100644 (file)
@@ -44,7 +44,7 @@ import java.io.Serializable;
  */
 public interface Attribute extends Serializable
 {
-  public Class getCategory ();
+  Class getCategory ();
 
-  public String getName ();
+  String getName ();
 }
index 325251a..7276f92 100644 (file)
@@ -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 ();
 }
index f8f6dba..8c07a8c 100644 (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);
 }