Removed random Logging.
This commit is contained in:
parent
88bb735ed8
commit
6e54818595
3 changed files with 0 additions and 8 deletions
|
@ -5,7 +5,6 @@ import net.minecraft.inventory.ICrafting;
|
|||
import appeng.container.AEBaseContainer;
|
||||
import appeng.container.slot.SlotRestrictedInput;
|
||||
import appeng.container.slot.SlotRestrictedInput.PlaceableItemType;
|
||||
import appeng.core.AELog;
|
||||
import appeng.tile.misc.TileVibrationChamber;
|
||||
import appeng.util.Platform;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
|
@ -49,7 +48,6 @@ public class ContainerVibrationChamber extends AEBaseContainer
|
|||
|
||||
if ( this.burnSpeed != this.myte.burnSpeed )
|
||||
{
|
||||
AELog.info( "" + this.myte.burnSpeed );
|
||||
icrafting.sendProgressBarUpdate( this, 1, this.myte.burnSpeed );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,7 +19,6 @@ import appeng.api.storage.IMEMonitorHandlerReciever;
|
|||
import appeng.api.storage.StorageChannel;
|
||||
import appeng.api.storage.data.IAEItemStack;
|
||||
import appeng.api.storage.data.IItemList;
|
||||
import appeng.core.AELog;
|
||||
import appeng.util.InventoryAdaptor;
|
||||
import appeng.util.Platform;
|
||||
import appeng.util.inv.ItemSlot;
|
||||
|
@ -130,9 +129,6 @@ public class MEMonitorIInventory implements IMEInventory<IAEItemStack>, IMEMonit
|
|||
@Override
|
||||
public IItemList<IAEItemStack> getStorageList()
|
||||
{
|
||||
for (IAEItemStack is : list)
|
||||
AELog.info( "sl: " + is.getItemStack().getUnlocalizedName() + " @ " + is.getStackSize() );
|
||||
|
||||
return list;
|
||||
}
|
||||
|
||||
|
|
|
@ -42,7 +42,6 @@ import appeng.api.storage.MEMonitorHandler;
|
|||
import appeng.api.storage.StorageChannel;
|
||||
import appeng.api.storage.data.IAEItemStack;
|
||||
import appeng.api.storage.data.IAEStack;
|
||||
import appeng.core.AELog;
|
||||
import appeng.helpers.AENoHandler;
|
||||
import appeng.me.GridAccessException;
|
||||
import appeng.me.storage.MEInventoryHandler;
|
||||
|
@ -187,7 +186,6 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
|
|||
|
||||
lastStateChange = worldObj.getTotalWorldTime();
|
||||
|
||||
AELog.info( "" + (state & 0x40) );
|
||||
return (state & 0xDB6DB6DB) != (oldState & 0xDB6DB6DB) || oldType != storageType;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue