aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IGregTechDeviceInformation.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IGregTechDeviceInformation.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/tileentity/IGregTechDeviceInformation.java4
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