mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-27 12:38:40 +01:00
Implement missing methods so that this compiles without errors
This commit is contained in:
parent
123c05a98e
commit
ef5ccbb775
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user