diff options
author | Alexdoru <57050655+Alexdoru@users.noreply.github.com> | 2024-10-25 00:10:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-24 16:10:29 -0600 |
commit | 75481cc806878b63798546d6dd5246e969a536e2 (patch) | |
tree | 7635cbac43441a8fe27f7c20aaf94484ae866c07 /src/main/java | |
parent | 7752642b24d67d4426487bf0ce9557eeedf2c9f7 (diff) | |
download | GT5-Unofficial-75481cc806878b63798546d6dd5246e969a536e2.tar.gz GT5-Unofficial-75481cc806878b63798546d6dd5246e969a536e2.tar.bz2 GT5-Unofficial-75481cc806878b63798546d6dd5246e969a536e2.zip |
Remove method in multiblock tooltip (#3410)
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gregtech/api/util/MultiblockTooltipBuilder.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main/java/gregtech/api/util/MultiblockTooltipBuilder.java b/src/main/java/gregtech/api/util/MultiblockTooltipBuilder.java index 6c4b248aad..007a73d588 100644 --- a/src/main/java/gregtech/api/util/MultiblockTooltipBuilder.java +++ b/src/main/java/gregtech/api/util/MultiblockTooltipBuilder.java @@ -131,7 +131,6 @@ public class MultiblockTooltipBuilder { * Add a separator line * * @return Instance this method was called on. - * @see #addStructureSeparator() */ public MultiblockTooltipBuilder addSeparator() { return addSeparator(EnumChatFormatting.GRAY, 41); @@ -722,18 +721,6 @@ public class MultiblockTooltipBuilder { } /** - * Add a separator line like this, to the structural hint:<br> - * ----------------------------------------- - * - * @return Instance this method was called on. - * @see #addSeparator() - */ - public MultiblockTooltipBuilder addStructureSeparator() { - sLines.add(TAB + "-----------------------------------------"); - return this; - } - - /** * Use this method to add non-standard structural hint. This info will appear before the standard structural hint. * * @param info The line to be added. This should be an entry into minecraft's localization system. |