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