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 static ImmutablePair[] emptyArray() { * obtain the generic types.

* * @param the left element type + * @param 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 static ImmutablePair of(final Map.Entry pair) { *

This factory allows the pair to be created using inference to * obtain the generic types.

* + * @param the left element type * @param the right element type * @param right the right element, may be null * @return a pair formed from the two parameters, not null