Skip to content

Commit

Permalink
Fix JEI memory leak, Closes CyclopsMC/EvilCraft#1049
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Aug 21, 2024
1 parent 5174c16 commit f61a04a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
public class SanguinaryEnvironmentalAccumulatorRecipeJEI extends CommonEnvironmentalAccumulatorRecipeJEI<SanguinaryEnvironmentalAccumulatorRecipeJEI> {

private static final Map<ResourceLocation, SanguinaryEnvironmentalAccumulatorRecipeJEI> RECIPE_WRAPPERS_2 = Maps.newIdentityHashMap();
private static final Map<ResourceLocation, SanguinaryEnvironmentalAccumulatorRecipeJEI> RECIPE_WRAPPERS_2 = Maps.newHashMap();

public SanguinaryEnvironmentalAccumulatorRecipeJEI(RecipeEnvironmentalAccumulator recipe) {
super(recipe);
Expand Down

0 comments on commit f61a04a

Please sign in to comment.