mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-25 22:10:21 +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;
|
||||
|
||||
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> {
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue