Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 30484118A3 for ; Tue, 6 May 2014 19:17:53 +0000 (UTC) Received: (qmail 92069 invoked by uid 500); 6 May 2014 17:58:02 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 92025 invoked by uid 500); 6 May 2014 17:58:02 -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 92016 invoked by uid 99); 6 May 2014 17:58:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 May 2014 17:58:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 May 2014 17:58:02 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C7A742388994; Tue, 6 May 2014 17:57:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1592817 - in /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple: ImmutablePair.java ImmutableTriple.java Date: Tue, 06 May 2014 17:57:38 -0000 To: commits@commons.apache.org From: britter@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140506175738.C7A742388994@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: britter Date: Tue May 6 17:57:38 2014 New Revision: 1592817 URL: http://svn.apache.org/r1592817 Log: Correct wrong documentation regarding extensibility of ImmutablePair and ImmutableTriple. This closes #13 from github. Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java?rev=1592817&r1=1592816&r2=1592817&view=diff ============================================================================== --- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java (original) +++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java Tue May 6 17:57:38 2014 @@ -21,8 +21,8 @@ package org.apache.commons.lang3.tuple; * *

Although the implementation is immutable, there is no restriction on the objects * that may be stored. If mutable objects are stored in the pair, then the pair - * itself effectively becomes mutable. The class is also not {@code final}, so a subclass - * could add undesirable behaviour.

+ * itself effectively becomes mutable. The class is also {@code final}, so a subclass + * can not add undesirable behaviour.

* *

#ThreadSafe# if both paired objects are thread-safe

* Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java?rev=1592817&r1=1592816&r2=1592817&view=diff ============================================================================== --- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java (original) +++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java Tue May 6 17:57:38 2014 @@ -21,8 +21,8 @@ package org.apache.commons.lang3.tuple; * *

Although the implementation is immutable, there is no restriction on the objects * that may be stored. If mutable objects are stored in the triple, then the triple - * itself effectively becomes mutable. The class is also not {@code final}, so a subclass - * could add undesirable behaviour.

+ * itself effectively becomes mutable. The class is also {@code final}, so a subclass + * can not add undesirable behaviour.

* *

#ThreadSafe# if all three objects are thread-safe

*