Add missing JavaDocs to make Checkstyle happy

This commit is contained in:
Benedikt Ritter 2017-05-17 10:14:07 -04:00
parent 585b1cb97b
commit 5a87fa172e
No known key found for this signature in database
GPG Key ID: 9DAADC1C9FCC82D0
2 changed files with 10 additions and 5 deletions

View File

@ -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")

View File

@ -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
*/