mirror of
https://github.com/jlengrand/vert.x.git
synced 2026-03-10 08:51:19 +00:00
FutureImpl do not need to implement Handler<AsyncResult<T>> as it is inherited from Future<T>
This commit is contained in:
@@ -15,7 +15,7 @@ import io.vertx.core.AsyncResult;
|
||||
import io.vertx.core.Future;
|
||||
import io.vertx.core.Handler;
|
||||
|
||||
class FutureImpl<T> implements Future<T>, Handler<AsyncResult<T>> {
|
||||
class FutureImpl<T> implements Future<T> {
|
||||
|
||||
private boolean failed;
|
||||
private boolean succeeded;
|
||||
|
||||
Reference in New Issue
Block a user