mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-14 03:35:51 -07:00
Remove nullability annotations from enum constructors
By: Darkyenus <darkyenus@gmail.com>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user