giving Cursor package scope defeats the whole point of this class (and breaks commons-pool), restoring to public

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131103 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rodney Waldhoff 2003-06-24 16:08:42 +00:00
parent ebc90b8f60
commit 5be840a7f7
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/CursorableLinkedList.java,v 1.13 2003/06/20 07:59:59 scolebourne Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/CursorableLinkedList.java,v 1.14 2003/06/24 16:08:42 rwaldhoff Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -84,7 +84,7 @@ import java.util.NoSuchElementException;
*
* @see java.util.LinkedList
* @since Commons Collections 1.0
* @version $Revision: 1.13 $ $Date: 2003/06/20 07:59:59 $
* @version $Revision: 1.14 $ $Date: 2003/06/24 16:08:42 $
*
* @author Rodney Waldhoff
* @author Janek Bogucki
@ -1093,7 +1093,7 @@ public class CursorableLinkedList implements List, Serializable {
}
}
class Cursor extends ListIter implements ListIterator {
public class Cursor extends ListIter implements ListIterator {
boolean _valid = false;
Cursor(int index) {