Skip to content

Commit

Permalink
ordering consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
douira committed Nov 10, 2024
1 parent 13418ca commit 6e2f4ef
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ public PortalMultiForest(int baseOffsetX, int baseOffsetY, int baseOffsetZ, floa
}

@Override
protected FlatTree[] makeTrees(int length) {
return new FlatTree[length];
protected FlatTree makeTree(int offsetX, int offsetY, int offsetZ) {
return new FlatTree(offsetX, offsetY, offsetZ);
}

@Override
protected FlatTree makeTree(int offsetX, int offsetY, int offsetZ) {
return new FlatTree(offsetX, offsetY, offsetZ);
protected FlatTree[] makeTrees(int length) {
return new FlatTree[length];
}
}

Expand Down

0 comments on commit 6e2f4ef

Please sign in to comment.