Remove unused method.

This commit is contained in:
drcrazy 2022-01-10 00:43:06 +03:00
parent c887d1652d
commit 4560771144

View file

@ -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<T extends MachineBaseBlockEntity> 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");
}