scolebourne    2004/01/05 13:32:10

  Modified:    collections/src/java/org/apache/commons/collections/map
                        AbstractHashedMap.java
  Log:
  Fix javadoc, from Gary Gregory
  
  Revision  Changes    Path
  1.7       +2 -4      
jakarta-commons/collections/src/java/org/apache/commons/collections/map/AbstractHashedMap.java
  
  Index: AbstractHashedMap.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/map/AbstractHashedMap.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- AbstractHashedMap.java    3 Jan 2004 05:15:00 -0000       1.6
  +++ AbstractHashedMap.java    5 Jan 2004 21:32:10 -0000       1.7
  @@ -480,7 +480,6 @@
        * 
        * @param entry  the entry to update
        * @param newValue  the new value to store
  -     * @return value  the previous value
        */
       protected void updateEntry(HashEntry entry, Object newValue) {
           entry.setValue(newValue);
  @@ -518,7 +517,6 @@
        * @param hashCode  the hash code of the key to add
        * @param key  the key to add
        * @param value  the value to add
  -     * @return the value previously mapped to this key, null if none
        */
       protected void addMapping(int hashIndex, int hashCode, Object key, Object 
value) {
           modCount++;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to