Skip to content

Commit

Permalink
Make IModRegistry.addRecipes take a Collection
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Nov 21, 2016
1 parent eac510b commit 66b6345
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/mezz/jei/api/IModRegistry.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package mezz.jei.api;

import java.util.Collection;
import java.util.List;

import mezz.jei.api.gui.IAdvancedGuiHandler;
Expand Down Expand Up @@ -46,7 +47,7 @@ public interface IModRegistry {
* These can be regular recipes, they will get wrapped by the provided recipe handlers.
* Recipes that are already registered with minecraft's recipe managers don't need to be added here.
*/
void addRecipes(List recipes);
void addRecipes(Collection recipes);

/**
* Add a clickable area on a gui to jump to specific categories of recipes in JEI.
Expand Down

0 comments on commit 66b6345

Please sign in to comment.