scolebourne    2005/01/03 15:52:49

  Modified:    collections/src/java/org/apache/commons/collections/bidimap
                        TreeBidiMap.java
               collections/src/java/org/apache/commons/collections/map
                        AbstractInputCheckedMapDecorator.java
               collections/src/java/org/apache/commons/collections/list
                        TreeList.java
  Log:
  Javadoc
  bug 31519, from Olaf Krische
  
  Revision  Changes    Path
  1.16      +5 -5      
jakarta-commons/collections/src/java/org/apache/commons/collections/bidimap/TreeBidiMap.java
  
  Index: TreeBidiMap.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/bidimap/TreeBidiMap.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- TreeBidiMap.java  12 Nov 2004 00:02:58 -0000      1.15
  +++ TreeBidiMap.java  3 Jan 2005 23:52:49 -0000       1.16
  @@ -1,5 +1,5 @@
   /*
  - *  Copyright 2001-2004 The Apache Software Foundation
  + *  Copyright 2001-2005 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  @@ -1376,7 +1376,7 @@
        * Compares for equals as per the API.
        *
        * @param obj  the object to compare to
  -     * @param index  the KEY or VALUE int
  +     * @param type  the KEY or VALUE int
        * @return true if equal
        */
       private boolean doEquals(Object obj, final int type) {
  @@ -1412,7 +1412,7 @@
       /**
        * Gets the hash code value for this map as per the API.
        *
  -     * @param index  the KEY or VALUE int
  +     * @param type  the KEY or VALUE int
        * @return the hash code value for this map
        */
       private int doHashCode(final int type) {
  @@ -1430,7 +1430,7 @@
       /**
        * Gets the string form of this map as per AbstractMap.
        *
  -     * @param index  the KEY or VALUE int
  +     * @param type  the KEY or VALUE int
        * @return the string form of this map
        */
       private String doToString(final int type) {
  
  
  
  1.3       +3 -3      
jakarta-commons/collections/src/java/org/apache/commons/collections/map/AbstractInputCheckedMapDecorator.java
  
  Index: AbstractInputCheckedMapDecorator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/map/AbstractInputCheckedMapDecorator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AbstractInputCheckedMapDecorator.java     21 May 2004 22:01:04 -0000      
1.2
  +++ AbstractInputCheckedMapDecorator.java     3 Jan 2005 23:52:49 -0000       
1.3
  @@ -1,5 +1,5 @@
   /*
  - *  Copyright 2004 The Apache Software Foundation
  + *  Copyright 2004-2005 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  @@ -88,7 +88,7 @@
        * <p>
        * This implementation returns <code>true</code>.
        * 
  -     * @param value  the value to check
  +     * @return true always
        */
       protected boolean isSetValueChecking() {
           return true;
  
  
  
  1.4       +2 -4      
jakarta-commons/collections/src/java/org/apache/commons/collections/list/TreeList.java
  
  Index: TreeList.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/list/TreeList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TreeList.java     26 May 2004 21:56:05 -0000      1.3
  +++ TreeList.java     3 Jan 2005 23:52:49 -0000       1.4
  @@ -1,5 +1,5 @@
   /*
  - *  Copyright 2004 The Apache Software Foundation
  + *  Copyright 2004-2005 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  @@ -762,8 +762,6 @@
            * #previous()}. Set to <code>null</code> if [EMAIL PROTECTED] 
#next()} or [EMAIL PROTECTED]
            * #previous()} haven't been called, or if the node has been removed
            * with [EMAIL PROTECTED] #remove()} or a new node added with [EMAIL 
PROTECTED] #add(Object)}.
  -         * Should be accessed through [EMAIL PROTECTED] 
#getLastNodeReturned()} to enforce
  -         * this behaviour.
            */
           protected AVLNode current;
           /**
  
  
  

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

Reply via email to