mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-11 02:02:04 -07:00
Remove nullability annotations from enum constructors
By: Darkyenus <darkyenus@gmail.com>
This commit is contained in:
@@ -82,7 +82,7 @@ public enum Statistic {
|
||||
this(Type.UNTYPED);
|
||||
}
|
||||
|
||||
private Statistic(@NotNull Type type) {
|
||||
private Statistic(/*@NotNull*/ Type type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user