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

@@ -57,7 +57,7 @@ public enum PatternType {
}
}
private PatternType(@NotNull String key) {
private PatternType(/*@NotNull*/ String key) {
this.identifier = key;
}