From cbac01695f9e65e5bdbe6564810031b2e31cf4af Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Mon, 6 May 2019 06:36:30 +0200 Subject: [PATCH] FutureImpl do not need to implement Handler> as it is inherited from Future --- src/main/java/io/vertx/core/impl/FutureImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/vertx/core/impl/FutureImpl.java b/src/main/java/io/vertx/core/impl/FutureImpl.java index b0d40ebfc..4906b9e6e 100644 --- a/src/main/java/io/vertx/core/impl/FutureImpl.java +++ b/src/main/java/io/vertx/core/impl/FutureImpl.java @@ -15,7 +15,7 @@ import io.vertx.core.AsyncResult; import io.vertx.core.Future; import io.vertx.core.Handler; -class FutureImpl implements Future, Handler> { +class FutureImpl implements Future { private boolean failed; private boolean succeeded;