You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/05/15 01:52:10 UTC

svn commit: r1482645 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Put.java

Author: sebb
Date: Tue May 14 23:52:09 2013
New Revision: 1482645

URL: http://svn.apache.org/r1482645
Log:
A bit more Javadoc

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Put.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Put.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Put.java?rev=1482645&r1=1482644&r2=1482645&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Put.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Put.java Tue May 14 23:52:09 2013
@@ -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);