Skip to content

Commit

Permalink
Remove method in multiblock tooltip (#3410)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexdoru authored Oct 24, 2024
1 parent 7752642 commit 75481cc
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/main/java/gregtech/api/util/MultiblockTooltipBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ public MultiblockTooltipBuilder addInfoAll(String... infoStrings) {
* Add a separator line
*
* @return Instance this method was called on.
* @see #addStructureSeparator()
*/
public MultiblockTooltipBuilder addSeparator() {
return addSeparator(EnumChatFormatting.GRAY, 41);
Expand Down Expand Up @@ -721,18 +720,6 @@ public MultiblockTooltipBuilder addSubChannelUsage(String channel, String purpos
return this;
}

/**
* 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.
*
Expand Down

0 comments on commit 75481cc

Please sign in to comment.