Unnecessary @SuppressWarnings("unchecked")

This commit is contained in:
Gary Gregory 2022-03-07 15:21:18 -05:00
parent 66d7e35866
commit 85a7f721cc

View File

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