General code cleanup

This commit is contained in:
modmuss50 2018-07-20 22:08:21 +01:00
parent 95b49e5e23
commit 7f8ce535a7
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82
17 changed files with 21 additions and 58 deletions

View file

@ -45,11 +45,6 @@ public class GuiAlloyFurnace extends GuiContainer {
this.alloyfurnace = alloyFurnace;
}
@Override
public void initGui() {
super.initGui();
}
@Override
protected void drawGuiContainerBackgroundLayer(final float p_146976_1_, final int p_146976_2_, final int p_146976_3_) {
this.drawDefaultBackground();

View file

@ -55,12 +55,6 @@ public class GuiFusionReactor extends GuiBase {
this.tile = tile;
}
@Override
public void initGui() {
super.initGui();
}
@Override
protected void drawGuiContainerBackgroundLayer(final float partialTicks, final int mouseX, final int mouseY) {
super.drawGuiContainerBackgroundLayer(partialTicks, mouseX, mouseY);

View file

@ -150,7 +150,7 @@ public class GuiSlotConfiguration {
return machineBase;
}
public static boolean mouseClicked(int mouseX, int mouseY, int mouseButton, GuiBase guiBase) throws IOException {
public static boolean mouseClicked(int mouseX, int mouseY, int mouseButton, GuiBase guiBase) {
if (mouseButton == 0) {
for (ConfigSlotElement configSlotElement : getVisibleElements()) {
for (ElementBase element : configSlotElement.elements) {