Remove not used throws
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user