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:28 UTC

[43/77] [abbrv] commons-collections git commit: comment

comment

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/branches/collections_jdk5_branch@751849 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/28228c8a
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/28228c8a
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/28228c8a

Branch: refs/heads/collections_jdk5_branch
Commit: 28228c8a834715ad6f7284d63ccdde25a4f1a4e7
Parents: 1bc525d
Author: Matthew Jason Benson <mb...@apache.org>
Authored: Mon Mar 9 21:32:22 2009 +0000
Committer: Matthew Jason Benson <mb...@apache.org>
Committed: Mon Mar 9 21:32:22 2009 +0000

----------------------------------------------------------------------
 src/java/org/apache/commons/collections/OrderedIterator.java | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/28228c8a/src/java/org/apache/commons/collections/OrderedIterator.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/commons/collections/OrderedIterator.java b/src/java/org/apache/commons/collections/OrderedIterator.java
index 809cdcb..e2231c1 100644
--- a/src/java/org/apache/commons/collections/OrderedIterator.java
+++ b/src/java/org/apache/commons/collections/OrderedIterator.java
@@ -5,9 +5,9 @@
  * The ASF licenses this file to You under the Apache License, Version 2.0
  * (the "License"); you may not use this file except in compliance with
  * the License.  You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -17,10 +17,11 @@
 package org.apache.commons.collections;
 
 import java.util.Iterator;
+import java.util.ListIterator;
 import java.util.NoSuchElementException;
 
 /**
- * Defines an iterator that operates over an ordered container.
+ * Defines an iterator that operates over an ordered container. Subset of {@link ListIterator}.
  * <p>
  * This iterator allows both forward and reverse iteration through the container.
  *