Skip to content

Commit

Permalink
reorder methods again
Browse files Browse the repository at this point in the history
  • Loading branch information
ghzdude committed Dec 27, 2024
1 parent 5309d47 commit bc86ecd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/gregtech/api/capability/impl/FluidTankList.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@ public FluidTankList(boolean allowSameFluidFill, @NotNull MultipleTankHandler pa
this.allowSameFluidFill = allowSameFluidFill;
}

@Override
public IFluidTankProperties[] getTankProperties() {
return this.tanks;
}

@Override
public @NotNull List<Entry> getFluidTanks() {
return Collections.unmodifiableList(Arrays.asList(this.tanks));
Expand All @@ -69,6 +64,11 @@ public int size() {
return tanks[index];
}

@Override
public IFluidTankProperties[] getTankProperties() {
return this.tanks;
}

@Override
public boolean allowSameFluidFill() {
return allowSameFluidFill;
Expand Down

0 comments on commit bc86ecd

Please sign in to comment.