aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IDigitalChest.java
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2020-03-19 17:12:47 +0100
committerGitHub <noreply@github.com>2020-03-19 17:12:47 +0100
commit4bdccb94802098bf9248e419c51861640fc0f1c1 (patch)
treed03af88ec036dcb897c5a845369b345aeed3c97f /src/main/java/gregtech/api/interfaces/tileentity/IDigitalChest.java
parentfeca5739287583eee824512ff61714ae4113a6fc (diff)
parent5959633bc9eea56859e4e569c2aa8b8a427e5ea2 (diff)
downloadGT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.tar.gz
GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.tar.bz2
GT5-Unofficial-4bdccb94802098bf9248e419c51861640fc0f1c1.zip
Merge pull request #251 from GTNewHorizons/Refactor
Refactor
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IDigitalChest.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/tileentity/IDigitalChest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IDigitalChest.java b/src/main/java/gregtech/api/interfaces/tileentity/IDigitalChest.java
index 8f55b75fcf..d7c39c900c 100644
--- a/src/main/java/gregtech/api/interfaces/tileentity/IDigitalChest.java
+++ b/src/main/java/gregtech/api/interfaces/tileentity/IDigitalChest.java
@@ -11,21 +11,21 @@ public interface IDigitalChest extends IHasWorldObjectAndCoords {
* I need things like this Function for MetaTileEntities, you MUST check this!!!
* Do not assume that it's a Digital Chest or similar Device, when it just implements this Interface.
*/
- public boolean isDigitalChest();
+ boolean isDigitalChest();
/**
* Gives an Array of Stacks with Size (of all the Data-stored Items) of the correspondent Item kinds (regular QChests have only one)
* Does NOT include the 64 "ready" Items inside the Slots, and neither the 128 Items in the overflow Buffer.
*/
- public ItemStack[] getStoredItemData();
+ ItemStack[] getStoredItemData();
/**
* A generic Interface for just setting the amount of contained Items
*/
- public void setItemCount(int aCount);
+ void setItemCount(int aCount);
/**
* Gets the maximum Item count for this QChest alike Storage. This applies to the Data-Storage, not for the up to 192 buffered Items!
*/
- public int getMaxItemCount();
+ int getMaxItemCount();
} \ No newline at end of file