This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 9d85b0a11 [LANG-1704] ImmutablePair and ImmutableTriple implementation 
don't match final in Javadoc
9d85b0a11 is described below

commit 9d85b0a11e5dbadd5da20865c3dd3f8ef4668c7d
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Jul 29 08:34:09 2023 -0400

    [LANG-1704] ImmutablePair and ImmutableTriple implementation don't match
    final in Javadoc
---
 src/changes/changes.xml                                           | 3 ++-
 src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java   | 3 +--
 src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java | 3 +--
 3 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b5aeffa26..cbbebe2d0 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -49,8 +49,9 @@ The <action> type attribute can be add,update,fix,remove.
   <release version="3.13.1" date="202Y-MM-DD" description="New features and 
bug fixes (Java 8).">
     <!-- FIX -->
     <action                   type="fix" dev="ggregory" due-to="remeio">Rename 
variable names from 'clss' to 'clazz' #1087.</action>
-    <action                   type="fix" dev="ggregory" 
due-to="remeio">Javadoc: ComparableUtils'c1' to 'comparable1', 'c2' to '
+    <action                   type="fix" dev="ggregory" 
due-to="remeio">Javadoc: ComparableUtils'c1' to 'comparable1', 'c2' to 
'</action>
     <action                   type="fix" dev="ggregory" due-to="Elliotte Rusty 
Harold">Javadoc: Remove 2.1 specific comment #1091.</action>
+    <action issue="LANG-1704" type="fix" dev="ggregory" due-to="Dan Ziemba, 
Gilles Sadowski, Alex Herbert, Gary Gregory">ImmutablePair and ImmutableTriple 
implementation don't match final in Javadoc.</action>
     <!-- UPDATE -->
     <action                   type="update" dev="ggregory" due-to="Gary 
Gregory">Bump commons-parent from 58 to 59.</action>
   </release>
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 125e73379..d90950208 100644
--- a/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java
+++ b/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java
@@ -24,8 +24,7 @@ import java.util.Objects;
  *
  * <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 {@code final}, so a 
subclass
- * can not add undesirable behavior.</p>
+ * itself effectively becomes mutable.</p>
  *
  * <p>#ThreadSafe# if both paired objects are thread-safe</p>
  *
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 8c692de0c..785d90aae 100644
--- a/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java
+++ b/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java
@@ -23,8 +23,7 @@ import java.util.Objects;
  *
  * <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 {@code final}, so a 
subclass
- * can not add undesirable behavior.</p>
+ * itself effectively becomes mutable.</p>
  *
  * <p>#ThreadSafe# if all three objects are thread-safe</p>
  *

Reply via email to