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

@@ -82,7 +82,7 @@ public enum Statistic {
this(Type.UNTYPED);
}
private Statistic(@NotNull Type type) {
private Statistic(/*@NotNull*/ Type type) {
this.type = type;
}