mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2025-02-18 19:11:19 +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) {
|
public void setContents(ItemStack[] itemStacks) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ItemStack[] getStorageContents() {
|
||||||
|
return new ItemStack[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setStorageContents(ItemStack[] itemStacks) throws IllegalArgumentException {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean contains(int i) {
|
public boolean contains(int i) {
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user