diff options
author | miozune <miozune@gmail.com> | 2024-08-16 22:26:16 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-16 22:26:16 +0900 |
commit | 83ebeadd3b867f45914972f4573211b3324ca433 (patch) | |
tree | 02acdcbb7cda6ee8c72cf7b4f575aa6591373d74 /src/main/java/gregtech/api/util/GT_PlayedSound.java | |
parent | 07610983b13813893b482e2c1a050355fd007c60 (diff) | |
download | GT5-Unofficial-83ebeadd3b867f45914972f4573211b3324ca433.tar.gz GT5-Unofficial-83ebeadd3b867f45914972f4573211b3324ca433.tar.bz2 GT5-Unofficial-83ebeadd3b867f45914972f4573211b3324ca433.zip |
Cleanup (#2904)
* Remove redundant inputSeparation=true call
* Remove deprecated MetaTileEntity#isDisplaySecondaryDescription
* Always use ModularUI
* Remove useModularUI
* Remove unused GUI features
* Remove IGlobalWirelessEnergy
* Remove CommonValues.V & CommonValues.VN
* More deprecation cleanup
---------
Co-authored-by: boubou19 <miisterunknown@gmail.com>
Diffstat (limited to 'src/main/java/gregtech/api/util/GT_PlayedSound.java')
-rw-r--r-- | src/main/java/gregtech/api/util/GT_PlayedSound.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/main/java/gregtech/api/util/GT_PlayedSound.java b/src/main/java/gregtech/api/util/GT_PlayedSound.java index 05d61e9833..8604d9b81f 100644 --- a/src/main/java/gregtech/api/util/GT_PlayedSound.java +++ b/src/main/java/gregtech/api/util/GT_PlayedSound.java @@ -1,7 +1,5 @@ package gregtech.api.util; -import static gregtech.api.enums.GT_Values.E; - import net.minecraft.util.ResourceLocation; public class GT_PlayedSound { @@ -16,15 +14,6 @@ public class GT_PlayedSound { mZ = (int) aZ; } - /** - * @inheritDoc - * @deprecated Use {@link GT_PlayedSound(ResourceLocation, double, double, double)} - */ - @Deprecated - public GT_PlayedSound(String aSoundName, double aX, double aY, double aZ) { - this(new ResourceLocation(aSoundName == null ? E : aSoundName), aX, aY, aZ); - } - @Override public boolean equals(Object aObject) { if (aObject instanceof GT_PlayedSound) { |