Skip to content

Commit bc86ecd

Browse files
committed
reorder methods again
1 parent 5309d47 commit bc86ecd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/java/gregtech/api/capability/impl/FluidTankList.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,6 @@ public FluidTankList(boolean allowSameFluidFill, @NotNull MultipleTankHandler pa
4949
this.allowSameFluidFill = allowSameFluidFill;
5050
}
5151

52-
@Override
53-
public IFluidTankProperties[] getTankProperties() {
54-
return this.tanks;
55-
}
56-
5752
@Override
5853
public @NotNull List<Entry> getFluidTanks() {
5954
return Collections.unmodifiableList(Arrays.asList(this.tanks));
@@ -69,6 +64,11 @@ public int size() {
6964
return tanks[index];
7065
}
7166

67+
@Override
68+
public IFluidTankProperties[] getTankProperties() {
69+
return this.tanks;
70+
}
71+
7272
@Override
7373
public boolean allowSameFluidFill() {
7474
return allowSameFluidFill;

0 commit comments

Comments
 (0)