(ItemStack... aStacks)
| 346 | public static ItemStackSet<ItemStackContainer> hashset(ItemStack... aStacks) {return new ItemStackSet<>(aStacks);} |
| 347 | public static ArrayListNoNulls<ItemStack> arraylist(ItemStack... aStacks) {return new ArrayListNoNulls<>(F, aStacks);} |
| 348 | public static ItemStack[] array(ItemStack... aStacks) {return aStacks;} |
| 349 | public static ItemStack[] array(int aLength) {return new ItemStack[aLength];} |
| 350 | |
| 351 | public static ItemStack make_(Item aItem , long aSize, long aMeta) {return new ItemStack(aItem , UT.Code.bindInt(aSize), UT.Code.bindShort(aMeta));} |
no outgoing calls
no test coverage detected