use ignore instead of _ because of Java8

This commit is contained in:
thatsIch 2014-09-20 22:26:10 +02:00
parent fce96ec08b
commit 0885f340e2
5 changed files with 9 additions and 9 deletions

View file

@ -34,7 +34,7 @@ public abstract class AEBaseMEGui extends AEBaseGui
SlotME theSlotField = (SlotME) s;
myStack = theSlotField.getAEStack();
}
catch (Throwable _)
catch (Throwable ignore)
{
}
@ -72,7 +72,7 @@ public abstract class AEBaseMEGui extends AEBaseGui
SlotME theSlotField = (SlotME) s;
myStack = theSlotField.getAEStack();
}
catch (Throwable _)
catch (Throwable ignore)
{
}

View file

@ -227,7 +227,7 @@ public class GuiNetworkStatus extends AEBaseGui implements ISortSource
SlotME theSlotField = (SlotME) s;
myStack = theSlotField.getAEStack();
}
catch (Throwable _)
catch (Throwable ignore)
{
}
@ -255,7 +255,7 @@ public class GuiNetworkStatus extends AEBaseGui implements ISortSource
SlotME theSlotField = (SlotME) s;
myStack = theSlotField.getAEStack();
}
catch (Throwable _)
catch (Throwable ignore)
{
}

View file

@ -108,7 +108,7 @@ public class ItemRepo
b.invoke( searchField, "" );
}
}
catch (Throwable _)
catch (Throwable ignore)
{
}
@ -143,7 +143,7 @@ public class ItemRepo
{
m = Pattern.compile( innerSearch.toLowerCase(), Pattern.CASE_INSENSITIVE );
}
catch (Throwable _)
catch (Throwable ignore)
{
try
{

View file

@ -82,7 +82,7 @@ public class PartP2PItems extends PartP2PTunnel<PartP2PItems> implements IPipeCo
{
output = new WrapperBCPipe( te, side.getOpposite() );
}
catch (Throwable _)
catch (Throwable ignore)
{
}
}
@ -92,7 +92,7 @@ public class PartP2PItems extends PartP2PTunnel<PartP2PItems> implements IPipeCo
/*
* if ( AppEng.instance.isIntegrationEnabled( "TE" ) ) { ITE thermal = (ITE) AppEng.instance.getIntegration(
* "TE" ); if ( thermal != null ) { if ( thermal.isPipe( te, side.getOpposite() ) ) { try { output = new
* WrapperTEPipe( te, side.getOpposite() ); } catch (Throwable _) { } } } }
* WrapperTEPipe( te, side.getOpposite() ); } catch (Throwable ignore) { } } } }
*/
if ( output == null )

View file

@ -884,7 +884,7 @@ public class Platform
return wrench.canWrench( player, x, y, z );
}
}
catch (Throwable _)
catch (Throwable ignore)
{ // explodes without BC
}