Skip to content

Commit

Permalink
Fix Quality Gate
Browse files Browse the repository at this point in the history
  • Loading branch information
GCHQDeveloper314 committed Dec 31, 2024
1 parent e39f7e1 commit 713f2eb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
public class IterableConcatExample extends KorypheIterableFunctionExample<Iterable<Iterable<Integer>>, Iterable<Integer>> {
@Override
public Function<Iterable<Iterable<Integer>>, Iterable<Integer>> getFunction() {
return new IterableConcat();
Function<? extends Iterable<? extends Iterable<Integer>>, Iterable<Integer>> f = new IterableConcat<>();
return ((Function<Iterable<Iterable<Integer>>, Iterable<Integer>>) f);
}

@Override
Expand Down

0 comments on commit 713f2eb

Please sign in to comment.