Implement missing methods so that this compiles without errors

This commit is contained in:
Brian Ronald 2016-05-08 00:29:20 +01:00
parent 123c05a98e
commit ef5ccbb775
1 changed files with 10 additions and 0 deletions

View File

@ -67,6 +67,16 @@ public class AdminInventory implements Inventory {
public void setContents(ItemStack[] itemStacks) {
}
@Override
public ItemStack[] getStorageContents() {
return new ItemStack[0];
}
@Override
public void setStorageContents(ItemStack[] itemStacks) throws IllegalArgumentException {
}
@Override
public boolean contains(int i) {
return true;