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

@@ -72,7 +72,7 @@ public enum MushroomBlockTexture {
private final Byte data;
private final BlockFace capFace;
private MushroomBlockTexture(final int data, @Nullable final BlockFace capFace) {
private MushroomBlockTexture(final int data, /*@Nullable*/ final BlockFace capFace) {
this.data = (byte) data;
this.capFace = capFace;
}