Temporary set of catch to ignored if they are ignored
This commit is contained in:
@@ -98,10 +98,10 @@ public class AppEngPacketHandlerBase
|
||||
{
|
||||
x = pc.getConstructor( ByteBuf.class );
|
||||
}
|
||||
catch (NoSuchMethodException e)
|
||||
catch (NoSuchMethodException ignored)
|
||||
{
|
||||
}
|
||||
catch (SecurityException e)
|
||||
catch (SecurityException ignored)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ public class PacketLightning extends AppEngPacket
|
||||
Minecraft.getMinecraft().effectRenderer.addEffect( fx );
|
||||
}
|
||||
}
|
||||
catch (Exception err)
|
||||
catch (Exception ignored)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ public class PacketMatterCannon extends AppEngPacket
|
||||
Minecraft.getMinecraft().effectRenderer.addEffect( fx );
|
||||
}
|
||||
}
|
||||
catch (Exception err)
|
||||
catch (Exception ignored)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user