Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id F3216200CD1 for ; Tue, 11 Jul 2017 19:22:06 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id F1BAF1668C9; Tue, 11 Jul 2017 17:22:06 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4BE2D1668B3 for ; Tue, 11 Jul 2017 19:22:06 +0200 (CEST) Received: (qmail 82852 invoked by uid 500); 11 Jul 2017 17:21:53 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 80978 invoked by uid 99); 11 Jul 2017 17:21:51 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Jul 2017 17:21:51 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 996E3F3240; Tue, 11 Jul 2017 17:21:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: chtompki@apache.org To: commits@commons.apache.org Date: Tue, 11 Jul 2017 17:22:13 -0000 Message-Id: <43c7f7b8ed3a4a3bba25251c95f4ba27@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [23/50] [abbrv] commons-collections git commit: Add missing @param. archived-at: Tue, 11 Jul 2017 17:22:07 -0000 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 Authored: Fri Mar 11 23:44:37 2016 +0000 Committer: Gary D. Gregory 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 the type of elements returned by this iterator * @since 1.0 * @version $Id$ */