diff options
author | YannickMG <yannickmg@gmail.com> | 2022-07-01 19:13:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-02 00:13:43 +0100 |
commit | e7eaa051f2725501436ac31f880746a9dc2f1465 (patch) | |
tree | 7fc74410cc795d855913cf590c75574b2834b222 /src/main/java/gregtech/api/gui/widgets | |
parent | f7bdbd14a6f5e8fb4e5af0010b4cfcae3282feee (diff) | |
download | GT5-Unofficial-e7eaa051f2725501436ac31f880746a9dc2f1465.tar.gz GT5-Unofficial-e7eaa051f2725501436ac31f880746a9dc2f1465.tar.bz2 GT5-Unofficial-e7eaa051f2725501436ac31f880746a9dc2f1465.zip |
Par, var, begone! (#1104)
* Renamed parameters of ItemBlock subclasses
* Renamed damageDropped and getDamageValue method parameters of Block subclasses
* Removed trivially superfluous overrides of Block::quantityDropped, Block::isOpaqueCube and Block::renderAsNormalBlock
* Removed trivially superfluous overrides of Block::getItemDropped
* Cleaned up a few more block subclass method parameters
* Cleaned up obsolete Javadoc
* par1 -> block in ItemBlock Constructors
* Renamed arguments to drawGuiContainerForegroundLayer
* Cleaned up redundant casts
* Renamed arguments to drawGuiContainerBackgroundLayer
* Renamed arguments to Slot subclass constructors
* Renamed arguments to World subclass GT_DummyWorld
* Renamed parameters of updateProgressBar
* Renamed the rest of the par* parameters outside of GT_MinableOreGenerator which should be deleted
* Renamed most var1-var10 and a few more in generally non-dead code
* Renamed last varSomething variables
* Removed 3 fully dead classes used nowhere in the codebase, with obsolete unused code
Diffstat (limited to 'src/main/java/gregtech/api/gui/widgets')
-rw-r--r-- | src/main/java/gregtech/api/gui/widgets/GT_GuiTooltipManager.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/gui/widgets/GT_GuiTooltipManager.java b/src/main/java/gregtech/api/gui/widgets/GT_GuiTooltipManager.java index e2ea65c482..abee1774f9 100644 --- a/src/main/java/gregtech/api/gui/widgets/GT_GuiTooltipManager.java +++ b/src/main/java/gregtech/api/gui/widgets/GT_GuiTooltipManager.java @@ -11,7 +11,7 @@ public class GT_GuiTooltipManager { int getGuiTop(); int getXSize(); FontRenderer getFontRenderer(); - void drawHoveringText(List<String> par1List, int par2, int par3, FontRenderer font); + void drawHoveringText(List<String> text, int mouseX, int mouseY, FontRenderer font); } private static final long DELAY = 5; |