From ef5ccbb77558859c87d70abc84178f838c79285f Mon Sep 17 00:00:00 2001 From: Brian Ronald Date: Sun, 8 May 2016 00:29:20 +0100 Subject: [PATCH] Implement missing methods so that this compiles without errors --- .../Acrobot/ChestShop/Containers/AdminInventory.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/java/com/Acrobot/ChestShop/Containers/AdminInventory.java b/src/main/java/com/Acrobot/ChestShop/Containers/AdminInventory.java index ff1ac40..124c34c 100644 --- a/src/main/java/com/Acrobot/ChestShop/Containers/AdminInventory.java +++ b/src/main/java/com/Acrobot/ChestShop/Containers/AdminInventory.java @@ -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;