A bit more Javadoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1482645 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2013-05-14 23:52:09 +00:00
parent ee1c540920
commit 8f5e319af8
1 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,9 @@ public interface Put<K, V> {
public void clear();
/**
* Note that the return type is Object, rather than V as in the Map interface.
* See the class Javadoc for further info.
*
* @see Map#put(Object, Object)
*/
public Object put(K key, V value);