diff options
author | Juuz <6596629+Juuxel@users.noreply.github.com> | 2023-03-18 20:12:20 +0200 |
---|---|---|
committer | Juuz <6596629+Juuxel@users.noreply.github.com> | 2023-03-18 20:12:20 +0200 |
commit | 315bb31b70c6b653d7838ec6db0a5622f30d480c (patch) | |
tree | d66ab60353b62ef9c447d10ef321db42f93b2691 | |
parent | d19642e22ea155d39813745afcc9cea14e2c26d8 (diff) | |
download | LibGui-315bb31b70c6b653d7838ec6db0a5622f30d480c.tar.gz LibGui-315bb31b70c6b653d7838ec6db0a5622f30d480c.tar.bz2 LibGui-315bb31b70c6b653d7838ec6db0a5622f30d480c.zip |
Remove unnecessary override
-rw-r--r-- | src/main/java/io/github/cottonmc/cotton/gui/SyncedGuiDescription.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/SyncedGuiDescription.java b/src/main/java/io/github/cottonmc/cotton/gui/SyncedGuiDescription.java index 4a92003..533aa81 100644 --- a/src/main/java/io/github/cottonmc/cotton/gui/SyncedGuiDescription.java +++ b/src/main/java/io/github/cottonmc/cotton/gui/SyncedGuiDescription.java @@ -168,12 +168,6 @@ public class SyncedGuiDescription extends ScreenHandler implements GuiDescriptio return result; } - // This is only kept for backwards binary compat, TODO: Remove in 1.19 - @Override - public void onSlotClick(int slotIndex, int button, SlotActionType actionType, PlayerEntity player) { - super.onSlotClick(slotIndex, button, actionType, player); - } - /** WILL MODIFY toInsert! Returns true if anything was inserted. */ private boolean insertIntoExisting(ItemStack toInsert, Slot slot, PlayerEntity player) { ItemStack curSlotStack = slot.getStack(); |