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