Unnecessary modifier in interfaces
This commit is contained in:
@@ -23,12 +23,13 @@
|
||||
|
||||
package appeng.api.recipes;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import appeng.api.exceptions.MissingIngredientError;
|
||||
import appeng.api.exceptions.RecipeError;
|
||||
import appeng.api.exceptions.RegistrationError;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface ICraftHandler
|
||||
{
|
||||
|
||||
@@ -39,7 +40,7 @@ public interface ICraftHandler
|
||||
* @param output parsed outputs
|
||||
* @throws RecipeError
|
||||
*/
|
||||
public void setup(List<List<IIngredient>> input, List<List<IIngredient>> output) throws RecipeError;
|
||||
void setup( List<List<IIngredient>> input, List<List<IIngredient>> output ) throws RecipeError;
|
||||
|
||||
/**
|
||||
* called when all recipes are parsed, and your required to register your recipe.
|
||||
@@ -47,6 +48,6 @@ public interface ICraftHandler
|
||||
* @throws RegistrationError
|
||||
* @throws MissingIngredientError
|
||||
*/
|
||||
public void register() throws RegistrationError, MissingIngredientError;
|
||||
void register() throws RegistrationError, MissingIngredientError;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user