You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2018/01/24 04:01:11 UTC

httpcomponents-client git commit: [HTTPCLIENT-1898] Incorrect comment in example class ClientMultiThreadedExecution.java

Repository: httpcomponents-client
Updated Branches:
  refs/heads/master 68fd176c0 -> ceec7eeaa


[HTTPCLIENT-1898] Incorrect comment in example class
ClientMultiThreadedExecution.java

Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-client/commit/ceec7eea
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-client/tree/ceec7eea
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-client/diff/ceec7eea

Branch: refs/heads/master
Commit: ceec7eeaa67133e8144fdcace6b08c24a3004c94
Parents: 68fd176
Author: Gary Gregory <ga...@gmail.com>
Authored: Tue Jan 23 21:01:06 2018 -0700
Committer: Gary Gregory <ga...@gmail.com>
Committed: Tue Jan 23 21:01:06 2018 -0700

----------------------------------------------------------------------
 RELEASE_NOTES.txt                                       | 12 +++++++++++-
 .../http/examples/ClientMultiThreadedExecution.java     |  2 +-
 2 files changed, 12 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-client/blob/ceec7eea/RELEASE_NOTES.txt
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 1d218e1..e9f3a2e 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 <ulrich at ulrichromahn dot net>
+   
+
+Release 5.0-BETA1
 -------------------
 
 This is the first BETA release of HttpClient 5.0. The 5.0 release serices introduces

http://git-wip-us.apache.org/repos/asf/httpcomponents-client/blob/ceec7eea/httpclient5/src/examples/org/apache/hc/client5/http/examples/ClientMultiThreadedExecution.java
----------------------------------------------------------------------
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 67a7f05..cf8dd70 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();