Remove nullability annotations from enum constructors

By: Darkyenus <darkyenus@gmail.com>
This commit is contained in:
Bukkit/Spigot
2019-03-14 11:28:51 +01:00
parent 416c865476
commit 9bd8e66c7d
17 changed files with 22 additions and 22 deletions

View File

@@ -101,7 +101,7 @@ public abstract class InventoryView {
REPAIR_COST(0, InventoryType.ANVIL);
int id;
InventoryType style;
private Property(int id, @NotNull InventoryType appliesTo) {
private Property(int id, /*@NotNull*/ InventoryType appliesTo) {
this.id = id;
style = appliesTo;
}