You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by rw...@apache.org on 2003/06/24 18:08:43 UTC

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections CursorableLinkedList.java

rwaldhoff    2003/06/24 09:08:43

  Modified:    collections/src/java/org/apache/commons/collections
                        CursorableLinkedList.java
  Log:
  giving Cursor package scope defeats the whole point of this class (and breaks commons-pool), restoring to public
  
  Revision  Changes    Path
  1.14      +3 -3      jakarta-commons/collections/src/java/org/apache/commons/collections/CursorableLinkedList.java
  
  Index: CursorableLinkedList.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/CursorableLinkedList.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- CursorableLinkedList.java	20 Jun 2003 07:59:59 -0000	1.13
  +++ CursorableLinkedList.java	24 Jun 2003 16:08:42 -0000	1.14
  @@ -1093,7 +1093,7 @@
           }
       }
   
  -    class Cursor extends ListIter implements ListIterator {
  +    public class Cursor extends ListIter implements ListIterator {
           boolean _valid = false;
   
           Cursor(int index) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org