Add missing JavaDocs to make Checkstyle happy
This commit is contained in:
parent
585b1cb97b
commit
5a87fa172e
|
@ -43,10 +43,12 @@ public final class ImmutablePair<L, R> extends Pair<L, R> {
|
|||
/** Serialization version */
|
||||
private static final long serialVersionUID = 4954918890077093841L;
|
||||
|
||||
/**
|
||||
/**
|
||||
* Returns an immutable pair of nulls.
|
||||
*
|
||||
* @return 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
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
|
|
|
@ -44,9 +44,12 @@ public final class ImmutableTriple<L, M, R> extends Triple<L, M, R> {
|
|||
/** Serialization version */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
/**
|
||||
* 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