Redundant use of public modifier.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543257 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-11-19 00:45:55 +00:00
parent 3fe52d0cd8
commit 81d1982c3c
1 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ public interface Put<K, V> {
/** /**
* @see Map#clear() * @see Map#clear()
*/ */
public void clear(); void clear();
/** /**
* Note that the return type is Object, rather than V as in the Map interface. * Note that the return type is Object, rather than V as in the Map interface.
@ -45,11 +45,11 @@ public interface Put<K, V> {
* *
* @see Map#put(Object, Object) * @see Map#put(Object, Object)
*/ */
public Object put(K key, V value); Object put(K key, V value);
/** /**
* @see Map#putAll(Map) * @see Map#putAll(Map)
*/ */
public void putAll(Map<? extends K, ? extends V> t); void putAll(Map<? extends K, ? extends V> t);
} }