mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-25 00:58:11 -05:00
fix typo
This commit is contained in:
parent
bd8497f31c
commit
72b5344f42
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ public class RecipeTransformer {
|
||||||
* @return The result of the transformation.
|
* @return The result of the transformation.
|
||||||
*/
|
*/
|
||||||
public Result transformRecipes(Map<ResourceLocation, JsonElement> recipes) {
|
public Result transformRecipes(Map<ResourceLocation, JsonElement> recipes) {
|
||||||
AlmostUnified.LOG.warn("Recipe counts: " + recipes.size());
|
AlmostUnified.LOG.warn("Recipe count: " + recipes.size());
|
||||||
|
|
||||||
Result result = new Result();
|
Result result = new Result();
|
||||||
Map<ResourceLocation, List<RecipeLink>> byType = groupRecipesByType(recipes);
|
Map<ResourceLocation, List<RecipeLink>> byType = groupRecipesByType(recipes);
|
||||||
|
@ -70,7 +70,7 @@ public class RecipeTransformer {
|
||||||
result.addAll(recipeLinks);
|
result.addAll(recipeLinks);
|
||||||
});
|
});
|
||||||
|
|
||||||
AlmostUnified.LOG.warn("Recipe counts afterwards: " + recipes.size());
|
AlmostUnified.LOG.warn("Recipe count afterwards: " + recipes.size());
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue