Skip to content

Commit e46b2b7

Browse files
committed
Useless override
1 parent c555e45 commit e46b2b7

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

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

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,16 @@
1616
*/
1717
package org.asynchttpclient;
1818

19-
import org.slf4j.Logger;
20-
import org.slf4j.LoggerFactory;
2119

2220
/**
2321
* Simple {@link AsyncHandler} of type {@link Response}
2422
*/
2523
public class AsyncCompletionHandlerBase extends AsyncCompletionHandler<Response> {
26-
private static final Logger LOGGER = LoggerFactory.getLogger(AsyncCompletionHandlerBase.class);
27-
2824
/**
2925
* {@inheritDoc}
3026
*/
3127
@Override
3228
public Response onCompleted(Response response) throws Exception {
3329
return response;
3430
}
35-
36-
/**
37-
* {@inheritDoc}
38-
*/
39-
@Override
40-
public void onThrowable(Throwable t) {
41-
LOGGER.debug(t.getMessage(), t);
42-
}
4331
}

0 commit comments

Comments
 (0)