aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io
diff options
context:
space:
mode:
authorJuuxel <6596629+Juuxel@users.noreply.github.com>2020-05-16 18:38:55 +0300
committerJuuxel <6596629+Juuxel@users.noreply.github.com>2020-05-16 18:38:55 +0300
commit75df4f3494a027421fd3dbaf12c3aeebac85f3e8 (patch)
tree8a0707ac0fc3868ec975ed7cb77089d06c71fd65 /src/main/java/io
parente4ee59927279e9a7e42fa249e573408e46dfc904 (diff)
downloadLibGui-75df4f3494a027421fd3dbaf12c3aeebac85f3e8.tar.gz
LibGui-75df4f3494a027421fd3dbaf12c3aeebac85f3e8.tar.bz2
LibGui-75df4f3494a027421fd3dbaf12c3aeebac85f3e8.zip
Remove ltr parameter from WItemSlot's public constructor
Diffstat (limited to 'src/main/java/io')
-rw-r--r--src/main/java/io/github/cottonmc/cotton/gui/widget/WItemSlot.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/widget/WItemSlot.java b/src/main/java/io/github/cottonmc/cotton/gui/widget/WItemSlot.java
index 06bac2e..585a807 100644
--- a/src/main/java/io/github/cottonmc/cotton/gui/widget/WItemSlot.java
+++ b/src/main/java/io/github/cottonmc/cotton/gui/widget/WItemSlot.java
@@ -24,7 +24,7 @@ public class WItemSlot extends WWidget {
private boolean insertingAllowed = true;
private boolean takingAllowed = true;
- public WItemSlot(Inventory inventory, int startIndex, int slotsWide, int slotsHigh, boolean big, boolean ltr) {
+ public WItemSlot(Inventory inventory, int startIndex, int slotsWide, int slotsHigh, boolean big) {
this.inventory = inventory;
this.startIndex = startIndex;
this.slotsWide = slotsWide;