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
@@ -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)
{
}