Skip to content

Commit

Permalink
(#1569) Review: Fixed ItemAt wildcard in ctor.
Browse files Browse the repository at this point in the history
  • Loading branch information
rocket-3 committed Oct 4, 2021
1 parent d84fa3f commit 79f87cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/scalar/ItemAt.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public ItemAt(
*/
public ItemAt(
final int position,
final Func<? super Iterable<? super T>, ? extends T> fallback,
final Func<? super Iterable<? extends T>, ? extends T> fallback,
final Iterable<? extends T> iterable
) {
this.saved = new Sticky<T>(
Expand Down

0 comments on commit 79f87cd

Please sign in to comment.