HTTPCLIENT-2118: Corrected PoolingHttpClientConnectionManager javadocs
diff --git a/httpclient5/src/main/java/org/apache/hc/client5/http/impl/io/PoolingHttpClientConnectionManager.java b/httpclient5/src/main/java/org/apache/hc/client5/http/impl/io/PoolingHttpClientConnectionManager.java
index d4799e6..29905a6 100644
--- a/httpclient5/src/main/java/org/apache/hc/client5/http/impl/io/PoolingHttpClientConnectionManager.java
+++ b/httpclient5/src/main/java/org/apache/hc/client5/http/impl/io/PoolingHttpClientConnectionManager.java
@@ -96,11 +96,8 @@
  * of persistent connections regardless of their expiration setting. No persistent
  * connection will be re-used past its TTL value.
  * <p>
- * The handling of stale connections was changed in version 4.4.
- * Previously, the code would check every connection by default before re-using it.
- * The code now only checks the connection if the elapsed time since
- * the last use of the connection exceeds the timeout that has been set.
- * The default timeout is set to 5000ms.
+ * Please note in contrast to 4.x no stale check is employed by default.
+ * @see #setValidateAfterInactivity(TimeValue)
  *
  * @since 4.3
  */