diff options
author | Martin Robertz <dream-master@gmx.net> | 2020-03-19 17:12:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 17:12:47 +0100 |
commit | 4bdccb94802098bf9248e419c51861640fc0f1c1 (patch) | |
tree | d03af88ec036dcb897c5a845369b345aeed3c97f /src/main/java/gregtech/api/interfaces/tileentity/IMachineBlockUpdateable.java | |
parent | feca5739287583eee824512ff61714ae4113a6fc (diff) | |
parent | 5959633bc9eea56859e4e569c2aa8b8a427e5ea2 (diff) | |
download | GT5-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/IMachineBlockUpdateable.java')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/tileentity/IMachineBlockUpdateable.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IMachineBlockUpdateable.java b/src/main/java/gregtech/api/interfaces/tileentity/IMachineBlockUpdateable.java index bb34419357..c7f6fe5f23 100644 --- a/src/main/java/gregtech/api/interfaces/tileentity/IMachineBlockUpdateable.java +++ b/src/main/java/gregtech/api/interfaces/tileentity/IMachineBlockUpdateable.java @@ -12,5 +12,5 @@ public interface IMachineBlockUpdateable { * I suggest to wait 1-5 seconds before actually checking the Machine Parts. * RP-Frames could for example cause Problems when you instacheck the Machine Parts. */ - public void onMachineBlockUpdate(); + void onMachineBlockUpdate(); } |