[LANG-1331] ImmutablePair.nullPair() Update @SuppressWarnings.

This commit is contained in:
Gary Gregory 2017-05-14 20:36:31 -07:00
parent 776b86e99a
commit e1bc286245
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public final class ImmutablePair<L, R> extends Pair<L, R> {
* @return an immutable pair of nulls.
* @since 3.6
*/
@SuppressWarnings("rawtypes")
@SuppressWarnings("unchecked")
public static <L, R> ImmutablePair<L, R> nullPair() {
return NULL;
}