mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-26 14:30:17 +01:00
add missing annotations on EitherRight
This commit is contained in:
parent
d182c26bcf
commit
f30b10b0a1
1 changed files with 5 additions and 0 deletions
|
@ -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> {
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue