Add missing JavaDocs to make Checkstyle happy
This commit is contained in:
parent
585b1cb97b
commit
5a87fa172e
|
@ -46,6 +46,8 @@ public final class ImmutablePair<L, R> extends Pair<L, R> {
|
|||
/**
|
||||
* Returns an immutable pair of nulls.
|
||||
*
|
||||
* @param <L> the left element of this pair. Value is {@code null}.
|
||||
* @param <R> the right element of this pair. Value is {@code null}.
|
||||
* @return an immutable pair of nulls.
|
||||
* @since 3.6
|
||||
*/
|
||||
|
|
|
@ -47,6 +47,9 @@ public final class ImmutableTriple<L, M, R> extends Triple<L, M, R> {
|
|||
/**
|
||||
* Returns an immutable triple of nulls.
|
||||
*
|
||||
* @param <L> the left element of this triple. Value is {@code null}.
|
||||
* @param <M> the middle element of this triple. Value is {@code null}.
|
||||
* @param <R> the right element of this triple. Value is {@code null}.
|
||||
* @return an immutable triple of nulls.
|
||||
* @since 3.6
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue