aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/plugin/composting/DefaultCompostingDisplay.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/me/shedaniel/rei/plugin/composting/DefaultCompostingDisplay.java')
-rw-r--r--src/main/java/me/shedaniel/rei/plugin/composting/DefaultCompostingDisplay.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/me/shedaniel/rei/plugin/composting/DefaultCompostingDisplay.java b/src/main/java/me/shedaniel/rei/plugin/composting/DefaultCompostingDisplay.java
index d799a30f5..f23ba49db 100644
--- a/src/main/java/me/shedaniel/rei/plugin/composting/DefaultCompostingDisplay.java
+++ b/src/main/java/me/shedaniel/rei/plugin/composting/DefaultCompostingDisplay.java
@@ -26,7 +26,7 @@ public class DefaultCompostingDisplay implements RecipeDisplay {
this.page = page;
this.order = order.stream().map(EntryStack::create).collect(Collectors.toList());
this.inputMap = inputMap;
- this.output = Arrays.asList(output).stream().map(EntryStack::create).collect(Collectors.toList());
+ this.output = Arrays.stream(output).map(EntryStack::create).collect(Collectors.toList());
this.allItems = allItems.stream().map(EntryStack::create).collect(Collectors.toList());
}