Skip to content

Commit

Permalink
Fix generic wildcard bug
Browse files Browse the repository at this point in the history
  • Loading branch information
spkrka committed Nov 6, 2015
1 parent 130302f commit d431d41
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -97,7 +97,7 @@ public static <T> CompletableFuture<T> exceptionallyCompletedFuture(Throwable th
*/
public static <T, U> CompletionStage<U> handleCompose(
CompletionStage<T> future,
final BiFunction<? super T, Throwable, CompletionStage<? extends U>> fn) {
final BiFunction<? super T, Throwable, ? extends CompletionStage<? extends U>> fn) {

final CompletableFuture<U> result = new CompletableFuture<U>();

Expand Down

0 comments on commit d431d41

Please sign in to comment.