Remove unused InventoryUtils class.

No clue what this was for. Possibly entry fees?
This commit is contained in:
Andreas Troelsen
2018-07-04 01:50:24 +02:00
parent c21d7e9e96
commit d0eb1cc487
@@ -1,21 +0,0 @@
package com.garbagemule.MobArena.util.inventory;
import org.bukkit.inventory.ItemStack;
import java.util.ArrayList;
import java.util.List;
public class InventoryUtils
{
public static List<ItemStack> extractAll(int id, List<ItemStack> items) {
List<ItemStack> result = new ArrayList<>();
for (ItemStack stack : items) {
if (stack.getTypeId() == id) {
result.add(stack);
}
}
return result;
}
}