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);


Reply via email to