diff --git a/module-client/src/main/java/org/apache/http/conn/ConnectionKeepAliveStrategy.java b/module-client/src/main/java/org/apache/http/conn/ConnectionKeepAliveStrategy.java index 27d56cb60..e743b56c2 100644 --- a/module-client/src/main/java/org/apache/http/conn/ConnectionKeepAliveStrategy.java +++ b/module-client/src/main/java/org/apache/http/conn/ConnectionKeepAliveStrategy.java @@ -54,7 +54,7 @@ public interface ConnectionKeepAliveStrategy { * there is no suitable suggestion. * * When coupled with a {@link ConnectionReuseStrategy}, if - * {@link ConnectionReuseStrategy#keepAlive(HttpResponse, HttpContext) + * {@link ConnectionReuseStrategy#keepAlive(HttpResponse, HttpContext)} * returns true, this allows you to control how long the reuse will last. If * keepAlive returns false, this should have no meaningful impact * diff --git a/module-client/src/main/java/org/apache/http/impl/client/BasicResponseHandler.java b/module-client/src/main/java/org/apache/http/impl/client/BasicResponseHandler.java index 71264fcb9..df903c748 100644 --- a/module-client/src/main/java/org/apache/http/impl/client/BasicResponseHandler.java +++ b/module-client/src/main/java/org/apache/http/impl/client/BasicResponseHandler.java @@ -47,7 +47,7 @@ import org.apache.http.util.EntityUtils; * * If this is used with * {@link org.apache.http.client.HttpClient#execute( - * org.apache.http.client.methods.HttpUriRequest, ResponseHandler), + * org.apache.http.client.methods.HttpUriRequest, ResponseHandler)}, * HttpClient may handle redirects (3xx responses) internally. * * @author Oleg Kalnichevski