No change

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131334 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-11-08 18:38:27 +00:00
parent 0615ee2d58
commit c34bf0a54c
2 changed files with 6 additions and 7 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/iterators/ObjectArrayListIterator.java,v 1.8 2003/10/09 20:44:32 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/ObjectArrayListIterator.java,v 1.9 2003/11/08 18:37:16 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -74,9 +74,9 @@ import java.util.NoSuchElementException;
* @see java.util.ListIterator * @see java.util.ListIterator
* *
* @since Commons Collections 3.0 * @since Commons Collections 3.0
* @version $Revision: 1.8 $ $Date: 2003/10/09 20:44:32 $ * @version $Revision: 1.9 $ $Date: 2003/11/08 18:37:16 $
* *
* @author <a href="mailto:neilotoole@users.sourceforge.net">Neil O'Toole</a> * @author Neil O'Toole
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Phil Steitz * @author Phil Steitz
*/ */

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/iterators/SingletonListIterator.java,v 1.8 2003/10/09 20:44:32 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/SingletonListIterator.java,v 1.9 2003/11/08 18:38:27 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -65,13 +65,12 @@ import java.util.NoSuchElementException;
* object instance. * object instance.
* *
* @since Commons Collections 2.1 * @since Commons Collections 2.1
* @version $Revision: 1.8 $ $Date: 2003/10/09 20:44:32 $ * @version $Revision: 1.9 $ $Date: 2003/11/08 18:38:27 $
* *
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Rodney Waldhoff * @author Rodney Waldhoff
*/ */
public class SingletonListIterator public class SingletonListIterator implements ListIterator, ResetableListIterator {
implements ListIterator, ResetableListIterator {
private boolean beforeFirst = true; private boolean beforeFirst = true;
private boolean nextCalled = false; private boolean nextCalled = false;