Temporary set of catch to ignored if they are ignored
This commit is contained in:
@@ -199,7 +199,7 @@ public class AEBaseTile extends TileEntity implements IOrientable, ICommonTile,
|
||||
up = ForgeDirection.valueOf( data.getString( "orientation_up" ) );
|
||||
}
|
||||
}
|
||||
catch (IllegalArgumentException iae)
|
||||
catch (IllegalArgumentException ignored)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -561,7 +561,7 @@ public class TileMolecularAssembler extends AENetworkInvTile implements IAEAppEn
|
||||
{
|
||||
newState = gridProxy.isActive() && gridProxy.getEnergy().extractAEPower( 1, Actionable.SIMULATE, PowerMultiplier.CONFIG ) > 0.0001;
|
||||
}
|
||||
catch (GridAccessException e)
|
||||
catch (GridAccessException ignored)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -171,7 +171,7 @@ public class AppEngInternalAEInventory implements IInventory, Iterable<ItemStack
|
||||
|
||||
target.setTag( "#" + x, c );
|
||||
}
|
||||
catch (Exception err)
|
||||
catch (Exception ignored)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -184,7 +184,7 @@ public class AppEngInternalInventory implements IInventory, Iterable<ItemStack>
|
||||
|
||||
target.setTag( "#" + x, c );
|
||||
}
|
||||
catch (Exception err)
|
||||
catch (Exception ignored)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -95,7 +95,7 @@ public class TileCableBus extends AEBaseTile implements AEMultiTile, ICustomColl
|
||||
tcb.copyFrom( this );
|
||||
getWorldObj().setTileEntity( xCoord, yCoord, zCoord, tcb );
|
||||
}
|
||||
catch (Throwable t)
|
||||
catch (Throwable ignored)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ public class TileCableBusTESR extends TileCableBus
|
||||
tcb.copyFrom( this );
|
||||
getWorldObj().setTileEntity( xCoord, yCoord, zCoord, tcb );
|
||||
}
|
||||
catch (Throwable t)
|
||||
catch (Throwable ignored)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -119,7 +119,7 @@ public class TileEnergyCell extends AENetworkTile implements IAEPowerStorage
|
||||
{
|
||||
gridProxy.getGrid().postEvent( new MENetworkPowerStorage( this, PowerEventType.REQUEST_POWER ) );
|
||||
}
|
||||
catch (GridAccessException e)
|
||||
catch (GridAccessException ignored)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -475,7 +475,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
|
||||
IStorageGrid gs = gridProxy.getStorage();
|
||||
Platform.postChanges( gs, removed, added, mySrc );
|
||||
}
|
||||
catch (GridAccessException e)
|
||||
catch (GridAccessException ignored)
|
||||
{
|
||||
|
||||
}
|
||||
@@ -512,7 +512,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
|
||||
inv.setInventorySlotContents( 0, returns.getItemStack() );
|
||||
}
|
||||
}
|
||||
catch (ChestNoHandler t)
|
||||
catch (ChestNoHandler ignored)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -541,7 +541,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
|
||||
IAEItemStack returns = cell.injectItems( AEApi.instance().storage().createItemStack( inv.getStackInSlot( 0 ) ), Actionable.SIMULATE, mySrc );
|
||||
return returns == null || returns.getStackSize() != itemstack.stackSize;
|
||||
}
|
||||
catch (ChestNoHandler t)
|
||||
catch (ChestNoHandler ignored)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -638,7 +638,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
|
||||
if ( handler instanceof ChestMonitorHandler )
|
||||
return ch.getStatusForCell( cell, ((ChestMonitorHandler) handler).getInternalHandler() );
|
||||
}
|
||||
catch (ChestNoHandler e)
|
||||
catch (ChestNoHandler ignored)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -648,7 +648,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
|
||||
if ( handler instanceof ChestMonitorHandler )
|
||||
return ch.getStatusForCell( cell, ((ChestMonitorHandler) handler).getInternalHandler() );
|
||||
}
|
||||
catch (ChestNoHandler e)
|
||||
catch (ChestNoHandler ignored)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -675,7 +675,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
|
||||
|
||||
return resource.amount - (int) results.getStackSize();
|
||||
}
|
||||
catch (ChestNoHandler e)
|
||||
catch (ChestNoHandler ignored)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -702,7 +702,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
|
||||
IMEInventoryHandler h = getHandler( StorageChannel.FLUIDS );
|
||||
return h.canAccept( AEFluidStack.create( new FluidStack( fluid, 1 ) ) );
|
||||
}
|
||||
catch (ChestNoHandler e)
|
||||
catch (ChestNoHandler ignored)
|
||||
{
|
||||
}
|
||||
return false;
|
||||
@@ -723,7 +723,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
|
||||
if ( h.getChannel() == StorageChannel.FLUIDS )
|
||||
return new FluidTankInfo[] { new FluidTankInfo( null, 1 ) }; // eh?
|
||||
}
|
||||
catch (ChestNoHandler e)
|
||||
catch (ChestNoHandler ignored)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -766,7 +766,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
|
||||
{
|
||||
gridPowered = gridProxy.getEnergy().isNetworkPowered();
|
||||
}
|
||||
catch (GridAccessException e)
|
||||
catch (GridAccessException ignored)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -186,7 +186,7 @@ public class TileDrive extends AENetworkInvTile implements IChestOrDrive, IPrior
|
||||
IStorageGrid gs = gridProxy.getStorage();
|
||||
Platform.postChanges( gs, removed, added, mySrc );
|
||||
}
|
||||
catch (GridAccessException e)
|
||||
catch (GridAccessException ignored)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user