Skip to content

Commit

Permalink
Minor missing generic return
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Jan 15, 2016
1 parent af7b72b commit 4a4b1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/vertx/core/Future.java
Expand Up @@ -106,7 +106,7 @@ static <T> Future<T> failedFuture(String failureMessage) {
* *
*/ */
@Fluent @Fluent
Future setHandler(Handler<AsyncResult<T>> handler); Future<T> setHandler(Handler<AsyncResult<T>> handler);


/** /**
* Set the result. Any handler will be called, if there is one, and the future will be marked as completed. * Set the result. Any handler will be called, if there is one, and the future will be marked as completed.
Expand Down

0 comments on commit 4a4b1d0

Please sign in to comment.