diff options
Diffstat (limited to 'libjava/javax/swing/text/MutableAttributeSet.java')
-rw-r--r-- | libjava/javax/swing/text/MutableAttributeSet.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libjava/javax/swing/text/MutableAttributeSet.java b/libjava/javax/swing/text/MutableAttributeSet.java index 429e6a8..fdd4bbe 100644 --- a/libjava/javax/swing/text/MutableAttributeSet.java +++ b/libjava/javax/swing/text/MutableAttributeSet.java @@ -56,37 +56,37 @@ public interface MutableAttributeSet extends AttributeSet { * @param name TODO * @param value TODO */ - public void addAttribute(Object name, Object value); + void addAttribute(Object name, Object value); /** * addAttributes * @param attributes TODO */ - public void addAttributes(AttributeSet attributes); + void addAttributes(AttributeSet attributes); /** * removeAttribute * @param name TODO */ - public void removeAttribute(Object name); + void removeAttribute(Object name); /** * removeAttributes * @param names TODO */ - public void removeAttributes(Enumeration names); + void removeAttributes(Enumeration names); /** * removeAttributes * @param attributes TODO */ - public void removeAttributes(AttributeSet attributes); + void removeAttributes(AttributeSet attributes); /** * setResolveParent * @param parent TODO */ - public void setResolveParent(AttributeSet parent); + void setResolveParent(AttributeSet parent); } // MutableAttributeSet |