Skip to content

Commit

Permalink
Fix InventoryUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
FirstMegaGame4 committed Aug 17, 2023
1 parent f20cda2 commit 3e6c7b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

public class InventoryUtils {

public DefaultedList<ItemStack> sort(DefaultedList<ItemStack> content) {
public static DefaultedList<ItemStack> sort(DefaultedList<ItemStack> content) {
Map<Pair<Item, NbtCompound>, Integer> items = new HashMap<>();

content.stream().filter(stack -> !stack.isEmpty()).forEach(stack -> {
Expand Down

0 comments on commit 3e6c7b4

Please sign in to comment.