Hopefully the final missed item from the 1.9 tests

This commit is contained in:
graywolf336 2016-03-21 17:03:51 -05:00
parent 42f78963c1
commit d0fcfe7c9b

View File

@ -318,7 +318,7 @@ public class MockPlayerInventory implements PlayerInventory {
}
public void setExtraContents(ItemStack[] items) {
public void setExtraContents(ItemStack[] contents) {
}
@ -326,6 +326,10 @@ public class MockPlayerInventory implements PlayerInventory {
return null;
}
public void setStorageContents(ItemStack[] contents) {
}
public ItemStack[] getStorageContents() {
return null;
}