Remove not used throws

This commit is contained in:
thatsIch 2014-11-04 12:36:16 +01:00
parent 075fd1848a
commit fb006fb25a
17 changed files with 17 additions and 17 deletions

View file

@ -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();
}

View file

@ -5,6 +5,6 @@ public interface IIntegrationModule
void Init() throws Throwable;
void PostInit() throws Throwable;
void PostInit();
}

View file

@ -16,7 +16,7 @@ public class CLApi extends BaseModule implements ICLApi
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
// :P
}

View file

@ -360,7 +360,7 @@ public class CraftGuide extends CraftGuideAPIObject implements IIntegrationModul
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
}

View file

@ -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() );
}

View file

@ -47,7 +47,7 @@ public class ImmibisMicroblocks extends BaseModule implements IImmibisMicroblock
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
}

View file

@ -19,7 +19,7 @@ public class MFR extends BaseModule
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
}

View file

@ -29,7 +29,7 @@ public class MJ5 extends BaseModule implements IMJ5
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
}

View file

@ -30,7 +30,7 @@ public class MJ6 extends BaseModule implements IMJ6
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
}

View file

@ -17,7 +17,7 @@ public class Mekanism extends BaseModule implements IMekanism
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
}

View file

@ -87,7 +87,7 @@ public class NEI extends BaseModule implements INEI, IContainerTooltipHandler
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
}

View file

@ -53,7 +53,7 @@ public class RB extends BaseModule implements IRB
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
}

View file

@ -18,7 +18,7 @@ public class RotaryCraft extends BaseModule
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
}

View file

@ -61,7 +61,7 @@ public class Waila extends BaseModule implements IWailaDataProvider, IWailaFMPPr
}
@Override
public void PostInit() throws Throwable
public void PostInit()
{
// :P
}

View file

@ -7,6 +7,6 @@ import appeng.api.exceptions.RegistrationError;
public interface IRecipeBakeable
{
void bake() throws RegistrationError, MissingIngredientError;
void bake() throws RegistrationError;
}

View file

@ -139,7 +139,7 @@ public class ShapelessRecipe implements IRecipe, IRecipeBakeable
}
@Override
public void bake() throws RegistrationError, MissingIngredientError
public void bake() throws RegistrationError
{
try
{

View file

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