diff options
author | Dream-Master <dream-master@gmx.net> | 2020-03-17 22:21:40 +0100 |
---|---|---|
committer | Dream-Master <dream-master@gmx.net> | 2020-03-17 22:21:40 +0100 |
commit | 0f6b03f927b2c482100b2ba46964db72c96156a0 (patch) | |
tree | 141bab113db4dbd76f6b3701d876f1c8e3f28b20 /src/main/java/gregtech/api/interfaces/tileentity/IGregTechDeviceInformation.java | |
parent | 28ed289c626555dda9f369780b28651a8c5f442e (diff) | |
parent | 5959633bc9eea56859e4e569c2aa8b8a427e5ea2 (diff) | |
download | GT5-Unofficial-0f6b03f927b2c482100b2ba46964db72c96156a0.tar.gz GT5-Unofficial-0f6b03f927b2c482100b2ba46964db72c96156a0.tar.bz2 GT5-Unofficial-0f6b03f927b2c482100b2ba46964db72c96156a0.zip |
Merge branch 'Refactor' into Bees
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IGregTechDeviceInformation.java')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/tileentity/IGregTechDeviceInformation.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IGregTechDeviceInformation.java b/src/main/java/gregtech/api/interfaces/tileentity/IGregTechDeviceInformation.java index e4bb4f1371..39c779e69c 100644 --- a/src/main/java/gregtech/api/interfaces/tileentity/IGregTechDeviceInformation.java +++ b/src/main/java/gregtech/api/interfaces/tileentity/IGregTechDeviceInformation.java @@ -9,7 +9,7 @@ public interface IGregTechDeviceInformation { * I need things like this Function for MetaTileEntities, you MUST check this!!! * Do not assume that it's a Information returning Device, when it just implements this Interface. */ - public boolean isGivingInformation(); + boolean isGivingInformation(); /** * Up to 8 Strings can be returned. @@ -17,5 +17,5 @@ public interface IGregTechDeviceInformation { * * @return an Array of Information Strings. Don't return null! */ - public String[] getInfoData(); + String[] getInfoData(); }
\ No newline at end of file |