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 54DBB200C87 for ; Wed, 17 May 2017 17:04:04 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 53759160BCD; Wed, 17 May 2017 15:04:04 +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 A251B160BBA for ; Wed, 17 May 2017 17:04:03 +0200 (CEST) Received: (qmail 8516 invoked by uid 500); 17 May 2017 15:03:49 -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 5494 invoked by uid 99); 17 May 2017 15:03:48 -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; Wed, 17 May 2017 15:03:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9ABD7F4D96; Wed, 17 May 2017 15:03:46 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: britter@apache.org To: commits@commons.apache.org Date: Wed, 17 May 2017 15:04:28 -0000 Message-Id: <6c835816de6b4dbcb6ecad6853d7e051@git.apache.org> In-Reply-To: <5ba8b749c94d4914a7c09a71013c8b40@git.apache.org> References: <5ba8b749c94d4914a7c09a71013c8b40@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [44/50] [lang] Add missing JavaDocs to make Checkstyle happy archived-at: Wed, 17 May 2017 15:04:04 -0000 Add missing JavaDocs to make Checkstyle happy Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/5a87fa17 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/5a87fa17 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/5a87fa17 Branch: refs/heads/release Commit: 5a87fa172eb1368fe413af34511d1eb3f2674a9f Parents: 585b1cb Author: Benedikt Ritter Authored: Wed May 17 10:14:07 2017 -0400 Committer: Benedikt Ritter Committed: Wed May 17 10:14:07 2017 -0400 ---------------------------------------------------------------------- .../java/org/apache/commons/lang3/tuple/ImmutablePair.java | 8 +++++--- .../java/org/apache/commons/lang3/tuple/ImmutableTriple.java | 7 +++++-- 2 files changed, 10 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/5a87fa17/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java b/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java index 85409fe..3df3a7f 100644 --- a/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java +++ b/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java @@ -43,10 +43,12 @@ public final class ImmutablePair extends Pair { /** Serialization version */ private static final long serialVersionUID = 4954918890077093841L; - /** + /** * Returns an immutable pair of nulls. - * - * @return an immutable pair of nulls. + * + * @param the left element of this pair. Value is {@code null}. + * @param the right element of this pair. Value is {@code null}. + * @return an immutable pair of nulls. * @since 3.6 */ @SuppressWarnings("unchecked") http://git-wip-us.apache.org/repos/asf/commons-lang/blob/5a87fa17/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java b/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java index 49f5746..83e212e 100644 --- a/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java +++ b/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java @@ -44,9 +44,12 @@ public final class ImmutableTriple extends Triple { /** Serialization version */ private static final long serialVersionUID = 1L; - /** + /** * Returns an immutable triple of nulls. - * + * + * @param the left element of this triple. Value is {@code null}. + * @param the middle element of this triple. Value is {@code null}. + * @param the right element of this triple. Value is {@code null}. * @return an immutable triple of nulls. * @since 3.6 */