Skip to content

Commit a746f54

Browse files
committed
nit: AsyncCompletionHandler doesn't need to implement AsyncHandler as it implements ProgressAsyncHandler
1 parent 1faf8cc commit a746f54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/main/java/org/asynchttpclient/AsyncCompletionHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @param <T> Type of the value that will be returned by the associated
3232
* {@link java.util.concurrent.Future}
3333
*/
34-
public abstract class AsyncCompletionHandler<T> implements AsyncHandler<T>, ProgressAsyncHandler<T> {
34+
public abstract class AsyncCompletionHandler<T> implements ProgressAsyncHandler<T> {
3535

3636
private static final Logger LOGGER = LoggerFactory.getLogger(AsyncCompletionHandler.class);
3737
private final Response.ResponseBuilder builder = new Response.ResponseBuilder();

0 commit comments

Comments
 (0)