mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-24 16:48:00 -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.
|
||||
*/
|
||||
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();
|
||||
Map<ResourceLocation, List<RecipeLink>> byType = groupRecipesByType(recipes);
|
||||
|
@ -70,7 +70,7 @@ public class RecipeTransformer {
|
|||
result.addAll(recipeLinks);
|
||||
});
|
||||
|
||||
AlmostUnified.LOG.warn("Recipe counts afterwards: " + recipes.size());
|
||||
AlmostUnified.LOG.warn("Recipe count afterwards: " + recipes.size());
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue