summaryrefslogtreecommitdiffstats
path: root/libjava/classpath/java/util/jar
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/java/util/jar')
-rw-r--r--libjava/classpath/java/util/jar/Attributes.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/libjava/classpath/java/util/jar/Attributes.java b/libjava/classpath/java/util/jar/Attributes.java
index 4db2c72e75b..c8babddab37 100644
--- a/libjava/classpath/java/util/jar/Attributes.java
+++ b/libjava/classpath/java/util/jar/Attributes.java
@@ -427,16 +427,13 @@ public class Attributes implements Cloneable, Map
* Attributes map.
* When the name already exists the value is replaced and the old value
* is returned.
- * <p>
- * I don't know why there is no public method with this signature. I think
- * there should be one.
*
* @param name the attribite name to add/replace
* @param value the (new) value of the attribute name
* @returns the old value of the attribute name or null if it didn't exist
* yet
*/
- String putValue(Name name, String value)
+ public String putValue(Name name, String value)
{
return (String) put(name, value);
}
OpenPOWER on IntegriCloud