You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2017/07/11 17:55:38 UTC

[53/77] [abbrv] commons-collections git commit: implement OrderedIterator (subset of ListIterator)

implement OrderedIterator (subset of ListIterator)

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/branches/collections_jdk5_branch@751888 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-collections/commit/7cb8edcf
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/7cb8edcf
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/7cb8edcf

Branch: refs/heads/collections_jdk5_branch
Commit: 7cb8edcf895ee4c2a54eb4b978ddb0d051eef930
Parents: 3338e25
Author: Matthew Jason Benson <mb...@apache.org>
Authored: Mon Mar 9 22:42:14 2009 +0000
Committer: Matthew Jason Benson <mb...@apache.org>
Committed: Mon Mar 9 22:42:14 2009 +0000

----------------------------------------------------------------------
 .../org/apache/commons/collections/ResettableListIterator.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/7cb8edcf/src/java/org/apache/commons/collections/ResettableListIterator.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/commons/collections/ResettableListIterator.java b/src/java/org/apache/commons/collections/ResettableListIterator.java
index 3484737..deffb6a 100644
--- a/src/java/org/apache/commons/collections/ResettableListIterator.java
+++ b/src/java/org/apache/commons/collections/ResettableListIterator.java
@@ -29,6 +29,6 @@ import java.util.ListIterator;
  * 
  * @author Stephen Colebourne
  */
-public interface ResettableListIterator<E> extends ListIterator<E>, ResettableIterator<E> {
+public interface ResettableListIterator<E> extends ListIterator<E>, ResettableIterator<E>, OrderedIterator<E> {
 
 }