Skip to content

Commit

Permalink
fix: git did not find conflict here, remove duplicate fork method
Browse files Browse the repository at this point in the history
  • Loading branch information
dordsor21 committed Mar 27, 2024
1 parent 7b8c789 commit c1c3a5f
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ public boolean apply(Extent extent, BlockVector3 get, BlockVector3 set) throws W
return patternsArray[index].apply(extent, get, set);
}

@Override
public Filter fork() {
final Pattern[] forked = Arrays.stream(this.patternsArray).map(Pattern::fork).toArray(Pattern[]::new);
return new LinearBlockPattern(forked);
}

@Override
public void reset() {
index = 0;
Expand Down

0 comments on commit c1c3a5f

Please sign in to comment.