Removed unused code, added Override annotation

This commit is contained in:
drcrazy 2017-11-12 12:15:32 +03:00
parent 14f715ff7b
commit bf5b649fc4
39 changed files with 94 additions and 102 deletions

View file

@ -353,6 +353,7 @@ public class TRBuilder extends GuiBuilder {
}
}
@Override
public void drawSlot(GuiScreen gui, int posX, int posY) {
Minecraft.getMinecraft().getTextureManager().bindTexture(GUI_SHEET);
gui.drawTexturedModalRect(posX, posY, 150, 0, 18, 18);
@ -387,6 +388,7 @@ public class TRBuilder extends GuiBuilder {
}
}
@Override
public void drawOutputSlot(GuiScreen gui, int posX, int posY) {
Minecraft.getMinecraft().getTextureManager().bindTexture(GUI_SHEET);
gui.drawTexturedModalRect(posX, posY, 150, 18, 26, 26);

View file

@ -232,6 +232,7 @@ public class GuiAutoCrafting extends GuiBase {
this.recipeSlector.slotClicked(slotIn);
}
@Override
public void onGuiClosed() {
this.recipeSlector.removed();
super.onGuiClosed();