Fix scope to allow sub list to be subclassed

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131813 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2004-07-29 22:28:57 +00:00
parent 612191811e
commit 228637706a
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ import org.apache.commons.collections.iterators.AbstractTestListIterator;
* test case (method) your {@link List} fails or override one of the
* protected methods from AbstractTestCollection.
*
* @version $Revision: 1.9 $ $Date: 2004/05/31 22:39:20 $
* @version $Revision: 1.10 $ $Date: 2004/07/29 22:28:57 $
*
* @author Rodney Waldhoff
* @author Paul Jack
@ -1038,7 +1038,7 @@ public abstract class AbstractTestList extends AbstractTestCollection {
private AbstractTestList outer;
BulkTestSubList(AbstractTestList outer) {
public BulkTestSubList(AbstractTestList outer) {
super("");
this.outer = outer;
}