Skip to content

Commit

Permalink
remove unnecessary overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
ghzdude committed Aug 17, 2024
1 parent c5b398c commit ce00ff9
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/main/java/gregtech/api/capability/impl/FluidTankList.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package gregtech.api.capability.impl;

import gregtech.api.capability.IFilter;
import gregtech.api.capability.IFilteredFluidContainer;
import gregtech.api.capability.IMultipleTankHandler;

import net.minecraft.nbt.NBTTagCompound;
Expand Down Expand Up @@ -277,16 +276,6 @@ public IFluidTank getDelegate() {
return delegate;
}

public boolean allowSameFluidFill() {
return tank.allowSameFluidFill();
}

@Nullable
@Override
public IFilter<FluidStack> getFilter() {
return this.delegate instanceof IFilteredFluidContainer filtered ? filtered.getFilter() : null;
}

@NotNull
public IFluidTankProperties[] getTankProperties() {
return delegate instanceof IFluidHandler fluidHandler ?
Expand Down

0 comments on commit ce00ff9

Please sign in to comment.