From ceec7eeaa67133e8144fdcace6b08c24a3004c94 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Tue, 23 Jan 2018 21:01:06 -0700 Subject: [PATCH] [HTTPCLIENT-1898] Incorrect comment in example class ClientMultiThreadedExecution.java --- RELEASE_NOTES.txt | 12 +++++++++++- .../http/examples/ClientMultiThreadedExecution.java | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt index 1d218e17b..e9f3a2e23 100644 --- a/RELEASE_NOTES.txt +++ b/RELEASE_NOTES.txt @@ -1,4 +1,14 @@ -Release 5.0-BETA1 +Release 5.0-BETA2 +------------------- + +Changelog: +------------------- + +* HTTPCLIENT-1898: Incorrect comment in example class ClientMultiThreadedExecution.java + Contributed by Ulrich Romahn + + +Release 5.0-BETA1 ------------------- This is the first BETA release of HttpClient 5.0. The 5.0 release serices introduces diff --git a/httpclient5/src/examples/org/apache/hc/client5/http/examples/ClientMultiThreadedExecution.java b/httpclient5/src/examples/org/apache/hc/client5/http/examples/ClientMultiThreadedExecution.java index 67a7f0547..cf8dd70c6 100644 --- a/httpclient5/src/examples/org/apache/hc/client5/http/examples/ClientMultiThreadedExecution.java +++ b/httpclient5/src/examples/org/apache/hc/client5/http/examples/ClientMultiThreadedExecution.java @@ -43,7 +43,7 @@ import org.apache.hc.core5.http.protocol.HttpContext; public class ClientMultiThreadedExecution { public static void main(final String[] args) throws Exception { - // Create an HttpClient with the ThreadSafeClientConnManager. + // Create an HttpClient with the PoolingHttpClientConnectionManager. // This connection manager must be used if more than one thread will // be using the HttpClient. final PoolingHttpClientConnectionManager cm = new PoolingHttpClientConnectionManager();