diff --git a/RebornCore/src/main/java/reborncore/common/util/RebornInventory.java b/RebornCore/src/main/java/reborncore/common/util/RebornInventory.java index f56d4c4b3..ce840ee62 100644 --- a/RebornCore/src/main/java/reborncore/common/util/RebornInventory.java +++ b/RebornCore/src/main/java/reborncore/common/util/RebornInventory.java @@ -27,7 +27,6 @@ package reborncore.common.util; import net.minecraft.item.ItemStack; import net.minecraft.item.Items; import net.minecraft.nbt.NbtCompound; -import net.minecraft.util.math.Direction; import org.jetbrains.annotations.NotNull; import reborncore.api.items.InventoryBase; import reborncore.common.blockentity.MachineBaseBlockEntity; @@ -95,12 +94,6 @@ public class RebornInventory extends Inventory return stack; } - - public RebornInventory getExternal(Direction facing) { - throw new UnsupportedOperationException("needs fixing"); - //return externalInventory.withFacing(facing); - } - public void read(NbtCompound data) { read(data, "Items"); }