From bca3975ad27099a4eb52657b0a0eec05a4fa3b1a Mon Sep 17 00:00:00 2001 From: LemADEC Date: Sun, 14 Sep 2014 05:59:52 +0200 Subject: [PATCH] Debug log cleanup Removed a few debug logs no longer needed --- src/cr0s/WarpDrive/machines/TileEntityCamera.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cr0s/WarpDrive/machines/TileEntityCamera.java b/src/cr0s/WarpDrive/machines/TileEntityCamera.java index d00fe7ce..5b4a9f88 100644 --- a/src/cr0s/WarpDrive/machines/TileEntityCamera.java +++ b/src/cr0s/WarpDrive/machines/TileEntityCamera.java @@ -63,14 +63,14 @@ public class TileEntityCamera extends TileEntity implements IPeripheral { @Override public void invalidate() { - WarpDrive.debugPrint("" + this + " invalidated"); + // WarpDrive.debugPrint("" + this + " invalidated"); WarpDrive.instance.cams.removeFromRegistry(worldObj, new ChunkPosition(xCoord, yCoord, zCoord)); super.invalidate(); } @Override public void onChunkUnload() { - WarpDrive.debugPrint("" + this + " onChunkUnload"); + // WarpDrive.debugPrint("" + this + " onChunkUnload"); WarpDrive.instance.cams.removeFromRegistry(worldObj, new ChunkPosition(xCoord, yCoord, zCoord)); super.onChunkUnload(); } @@ -79,14 +79,14 @@ public class TileEntityCamera extends TileEntity implements IPeripheral { public void readFromNBT(NBTTagCompound tag) { super.readFromNBT(tag); frequency = tag.getInteger("frequency"); - WarpDrive.debugPrint("" + this + " readFromNBT"); + // WarpDrive.debugPrint("" + this + " readFromNBT"); } @Override public void writeToNBT(NBTTagCompound tag) { super.writeToNBT(tag); tag.setInteger("frequency", frequency); - WarpDrive.debugPrint("" + this + " writeToNBT"); + // WarpDrive.debugPrint("" + this + " writeToNBT"); } // IPeripheral methods implementation