You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2014/05/06 19:57:38 UTC

svn commit: r1592817 - in /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/tuple: ImmutablePair.java ImmutableTriple.java

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;
  * 
  * <p>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.</p>
+ * itself effectively becomes mutable. The class is also {@code final}, so a subclass
+ * can not add undesirable behaviour.</p>
  * 
  * <p>#ThreadSafe# if both paired objects are thread-safe</p>
  *

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;
  * 
  * <p>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.</p>
+ * itself effectively becomes mutable. The class is also {@code final}, so a subclass
+ * can not add undesirable behaviour.</p>
  * 
  * <p>#ThreadSafe# if all three objects are thread-safe</p>
  *