Deleted useless things
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
package appeng.util.inv;
|
||||
|
||||
import net.minecraft.inventory.IInventory;
|
||||
import net.minecraft.inventory.ISidedInventory;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraftforge.common.util.ForgeDirection;
|
||||
|
||||
public class WrapperMCISidedInventory extends WrapperInventoryRange implements IInventory, IInventoryWrapper
|
||||
public class WrapperMCISidedInventory extends WrapperInventoryRange implements IInventoryWrapper
|
||||
{
|
||||
|
||||
private final ForgeDirection dir;
|
||||
|
||||
@@ -92,7 +92,7 @@ public abstract class AEStack<StackType extends IAEStack> implements IAEStack<St
|
||||
countRequestable += i;
|
||||
}
|
||||
|
||||
void putPacketValue(ByteBuf tag, long num) throws IOException
|
||||
void putPacketValue(ByteBuf tag, long num)
|
||||
{
|
||||
if ( num <= 255 )
|
||||
tag.writeByte( (byte) (num + Byte.MIN_VALUE) );
|
||||
@@ -104,7 +104,7 @@ public abstract class AEStack<StackType extends IAEStack> implements IAEStack<St
|
||||
tag.writeLong( num );
|
||||
}
|
||||
|
||||
static long getPacketValue(byte type, ByteBuf tag) throws IOException
|
||||
static long getPacketValue(byte type, ByteBuf tag)
|
||||
{
|
||||
if ( type == 0 )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user