Remove not used throws
This commit is contained in:
parent
075fd1848a
commit
fb006fb25a
17 changed files with 17 additions and 17 deletions
|
@ -11,6 +11,6 @@ public abstract class BaseModule implements IIntegrationModule {
|
|||
public abstract void Init() throws Throwable;
|
||||
|
||||
@Override
|
||||
public abstract void PostInit() throws Throwable;
|
||||
public abstract void PostInit();
|
||||
|
||||
}
|
||||
|
|
|
@ -5,6 +5,6 @@ public interface IIntegrationModule
|
|||
|
||||
void Init() throws Throwable;
|
||||
|
||||
void PostInit() throws Throwable;
|
||||
void PostInit();
|
||||
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ public class CLApi extends BaseModule implements ICLApi
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
// :P
|
||||
}
|
||||
|
|
|
@ -360,7 +360,7 @@ public class CraftGuide extends CraftGuideAPIObject implements IIntegrationModul
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -92,7 +92,7 @@ public class FMP implements IIntegrationModule, IPartFactory, IPartConverter, IF
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
MinecraftForge.EVENT_BUS.register( new FMPEvent() );
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ public class ImmibisMicroblocks extends BaseModule implements IImmibisMicroblock
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ public class MFR extends BaseModule
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ public class MJ5 extends BaseModule implements IMJ5
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ public class MJ6 extends BaseModule implements IMJ6
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ public class Mekanism extends BaseModule implements IMekanism
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -87,7 +87,7 @@ public class NEI extends BaseModule implements INEI, IContainerTooltipHandler
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -53,7 +53,7 @@ public class RB extends BaseModule implements IRB
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ public class RotaryCraft extends BaseModule
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -61,7 +61,7 @@ public class Waila extends BaseModule implements IWailaDataProvider, IWailaFMPPr
|
|||
}
|
||||
|
||||
@Override
|
||||
public void PostInit() throws Throwable
|
||||
public void PostInit()
|
||||
{
|
||||
// :P
|
||||
}
|
||||
|
|
|
@ -7,6 +7,6 @@ import appeng.api.exceptions.RegistrationError;
|
|||
public interface IRecipeBakeable
|
||||
{
|
||||
|
||||
void bake() throws RegistrationError, MissingIngredientError;
|
||||
void bake() throws RegistrationError;
|
||||
|
||||
}
|
||||
|
|
|
@ -139,7 +139,7 @@ public class ShapelessRecipe implements IRecipe, IRecipeBakeable
|
|||
}
|
||||
|
||||
@Override
|
||||
public void bake() throws RegistrationError, MissingIngredientError
|
||||
public void bake() throws RegistrationError
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
|
@ -114,7 +114,7 @@ public class AETileEventHandler
|
|||
* @throws IOException
|
||||
*/
|
||||
@SideOnly(Side.CLIENT)
|
||||
public boolean readFromStream(AEBaseTile tile, ByteBuf data) throws IOException
|
||||
public boolean readFromStream(AEBaseTile tile, ByteBuf data)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue