Skip to content

Commit

Permalink
removed rest of the deprecated methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Feb 1, 2025
1 parent ff01b75 commit 005ba15
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ public MachineFluidHandler(T tile, int capacity, int inputCount, int outputCount
super(tile, capacity, inputCount, outputCount);
}

@Deprecated(forRemoval = true)
public MachineFluidHandler(T tile, int capacity, int unused, int inputCount, int outputCount) {
this(tile, capacity, inputCount, outputCount);
}

public MachineFluidHandler(T tile) {
this(tile, 32000);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -516,11 +516,6 @@ public T addTooltipInfo(Component tooltip){
return addTooltipInfo((m, s,w,t,f) -> t.add(tooltip));
}

@Deprecated
public T setTooltipInfo(ITooltipInfo info){
return this.addTooltipInfo(info);
}

public T addTooltipInfo(ITooltipInfo info){
this.tooltipFunctions.add(info);
return (T) this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,6 @@ public AntimatterToolType setToolTip(Component... tooltip) {
return this;
}

@Deprecated
public AntimatterToolType setRepairability(boolean repairable){
return setRepairable(repairable);
}

public AntimatterToolType setTag(AntimatterToolType tag) {
this.originalTag = false;
this.tag = tag.getTag();
Expand Down

0 comments on commit 005ba15

Please sign in to comment.