Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
cn337131 committed Jan 15, 2025
1 parent cd6fa70 commit 3426e57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
public class IterableMerge<T> extends KorypheBinaryOperator<Iterable<T>> {

@Override
protected Iterable<T> _apply(Iterable<T> a, Iterable<T> b) {
protected Iterable<T> _apply(final Iterable<T> a, final Iterable<T> b) {
return IterableUtil.concat(Arrays.asList(a, b));
}
}

0 comments on commit 3426e57

Please sign in to comment.