aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/tuple
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2020-06-23 14:22:46 -0400
committerGary Gregory <garydgregory@gmail.com>2020-06-23 14:22:46 -0400
commit6315e8c138d2b23427e77271bfad2359432a570b (patch)
treeee8cc6635b35df44b2f7107602bda09f91fb98cf /src/main/java/org/apache/commons/lang3/tuple
parent341aaa797d515a1fce5def6b41cdc481701ad389 (diff)
downloadapache-commons-lang-6315e8c138d2b23427e77271bfad2359432a570b.tar.gz
Javadoc.
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/tuple')
-rw-r--r--src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java2
1 files changed, 2 insertions, 0 deletions
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 e6d4b9255..da3011dd0 100644
--- a/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java
+++ b/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java
@@ -76,6 +76,7 @@ public final class ImmutablePair<L, R> extends Pair<L, R> {
* obtain the generic types.</p>
*
* @param <L> the left element type
+ * @param <R> the right element type
* @param left the left element, may be null
* @return a pair formed from the two parameters, not null
* @since 3.11
@@ -143,6 +144,7 @@ public final class ImmutablePair<L, R> extends Pair<L, R> {
* <p>This factory allows the pair to be created using inference to
* obtain the generic types.</p>
*
+ * @param <L> the left element type
* @param <R> the right element type
* @param right the right element, may be null
* @return a pair formed from the two parameters, not null