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:22:13 UTC

[23/50] [abbrv] commons-collections git commit: Add missing @param.

Add missing @param.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1734646 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/c62ad3c0
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/c62ad3c0
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/c62ad3c0

Branch: refs/heads/master
Commit: c62ad3c0154a13666438ee1aad1c2ed8978fd761
Parents: 6870c33
Author: Gary D. Gregory <gg...@apache.org>
Authored: Fri Mar 11 23:44:37 2016 +0000
Committer: Gary D. Gregory <gg...@apache.org>
Committed: Fri Mar 11 23:44:37 2016 +0000

----------------------------------------------------------------------
 .../org/apache/commons/collections4/iterators/ArrayIterator.java    | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/c62ad3c0/src/main/java/org/apache/commons/collections4/iterators/ArrayIterator.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/collections4/iterators/ArrayIterator.java b/src/main/java/org/apache/commons/collections4/iterators/ArrayIterator.java
index 34eccec..a6e7831 100644
--- a/src/main/java/org/apache/commons/collections4/iterators/ArrayIterator.java
+++ b/src/main/java/org/apache/commons/collections4/iterators/ArrayIterator.java
@@ -32,6 +32,7 @@ import org.apache.commons.collections4.ResettableIterator;
  * The iterator implements a {@link #reset} method, allowing the reset of
  * the iterator back to the start if required.
  *
+ * @param <E> the type of elements returned by this iterator
  * @since 1.0
  * @version $Id$
  */