mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-06 07:02:18 -07:00
Finish converting most of the undeprecated api to jspecify
This commit is contained in:
@@ -63,12 +63,11 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
@@ -0,0 +0,0 @@
|
||||
+package org.bukkit.inventory;
|
||||
+
|
||||
+import org.checkerframework.checker.nullness.qual.NonNull;
|
||||
+import org.checkerframework.framework.qual.DefaultQualifier;
|
||||
+import org.jetbrains.annotations.ApiStatus;
|
||||
+import org.jspecify.annotations.NullMarked;
|
||||
+
|
||||
+@ApiStatus.Internal
|
||||
+@DefaultQualifier(NonNull.class)
|
||||
+@NullMarked
|
||||
+record EmptyRecipeChoice() implements RecipeChoice {
|
||||
+
|
||||
+ static final RecipeChoice INSTANCE = new EmptyRecipeChoice();
|
||||
|
Reference in New Issue
Block a user