add missing annotations on EitherRight

This commit is contained in:
Jake Potrebic 2024-12-24 10:59:46 -08:00
parent d182c26bcf
commit f30b10b0a1
No known key found for this signature in database
GPG key ID: 27CC63F7CBC866C7

View file

@ -1,4 +1,9 @@
package io.papermc.paper.util; package io.papermc.paper.util;
import org.jetbrains.annotations.ApiStatus;
import org.jspecify.annotations.NullMarked;
@NullMarked
@ApiStatus.Internal
public record EitherRight<L, R>(R value) implements Either.Right<L, R> { public record EitherRight<L, R>(R value) implements Either.Right<L, R> {
} }