Repository: ant-ivy Updated Branches: refs/heads/master ab8b60874 -> fc8ef4d22
Make HttpClientHandler public again to prevent backward compatible problems for upcoming release (see https://issues.apache.org/jira/browse/CAMEL-11727) Project: http://git-wip-us.apache.org/repos/asf/ant-ivy/repo Commit: http://git-wip-us.apache.org/repos/asf/ant-ivy/commit/fc8ef4d2 Tree: http://git-wip-us.apache.org/repos/asf/ant-ivy/tree/fc8ef4d2 Diff: http://git-wip-us.apache.org/repos/asf/ant-ivy/diff/fc8ef4d2 Branch: refs/heads/master Commit: fc8ef4d22c95b13b907ed14b19cea8ff5fd1e653 Parents: ab8b608 Author: Jaikiran Pai <[email protected]> Authored: Thu Sep 14 10:56:44 2017 +0530 Committer: Jaikiran Pai <[email protected]> Committed: Thu Sep 14 10:56:44 2017 +0530 ---------------------------------------------------------------------- src/java/org/apache/ivy/util/url/HttpClientHandler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/fc8ef4d2/src/java/org/apache/ivy/util/url/HttpClientHandler.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/ivy/util/url/HttpClientHandler.java b/src/java/org/apache/ivy/util/url/HttpClientHandler.java index e9bc699..c60567d 100644 --- a/src/java/org/apache/ivy/util/url/HttpClientHandler.java +++ b/src/java/org/apache/ivy/util/url/HttpClientHandler.java @@ -67,7 +67,7 @@ import java.util.concurrent.ConcurrentHashMap; /** * */ -class HttpClientHandler extends AbstractURLHandler implements AutoCloseable { +public class HttpClientHandler extends AbstractURLHandler implements AutoCloseable { private static final SimpleDateFormat LAST_MODIFIED_FORMAT = new SimpleDateFormat( "EEE, d MMM yyyy HH:mm:ss z", Locale.US); @@ -94,7 +94,7 @@ class HttpClientHandler extends AbstractURLHandler implements AutoCloseable { private final CloseableHttpClient httpClient; - HttpClientHandler() { + public HttpClientHandler() { this.httpClient = buildUnderlyingClient(); }
