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
+2 -2
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 )