You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2017/05/09 20:02:06 UTC

[40/50] httpcomponents-core git commit: Revert: Rename variables "sslcontext" to "sslContext".

Revert: Rename variables "sslcontext" to "sslContext".

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpcore/branches/4.4.x@1793943 13f79535-47bb-0310-9956-ffa450edef68


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

Branch: refs/heads/4.4.x
Commit: 0a543bb809cce902229bbbe5365210d78f34225d
Parents: 0ee4ac3
Author: Gary D. Gregory <gg...@apache.org>
Authored: Fri May 5 05:20:25 2017 +0000
Committer: Gary D. Gregory <gg...@apache.org>
Committed: Fri May 5 05:20:25 2017 +0000

----------------------------------------------------------------------
 .../org/apache/http/impl/nio/SSLClientIOEventDispatch.java     | 6 +++---
 .../org/apache/http/impl/nio/SSLServerIOEventDispatch.java     | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/0a543bb8/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLClientIOEventDispatch.java
----------------------------------------------------------------------
diff --git a/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLClientIOEventDispatch.java b/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLClientIOEventDispatch.java
index b43bbb8..852f246 100644
--- a/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLClientIOEventDispatch.java
+++ b/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLClientIOEventDispatch.java
@@ -61,7 +61,7 @@ public class SSLClientIOEventDispatch implements IOEventDispatch {
     private static final String SSL_SESSION = "SSL_SESSION";
 
     protected final NHttpClientHandler handler;
-    protected final SSLContext sslContext;
+    protected final SSLContext sslcontext;
     protected final SSLIOSessionHandler sslHandler;
     protected final HttpParams params;
 
@@ -87,7 +87,7 @@ public class SSLClientIOEventDispatch implements IOEventDispatch {
         Args.notNull(params, "HTTP parameters");
         this.handler = handler;
         this.params = params;
-        this.sslContext = sslContext;
+        this.sslcontext = sslContext;
         this.sslHandler = sslHandler;
     }
 
@@ -178,7 +178,7 @@ public class SSLClientIOEventDispatch implements IOEventDispatch {
 
         final SSLIOSession sslSession = createSSLIOSession(
                 session,
-                this.sslContext,
+                this.sslcontext,
                 this.sslHandler);
 
         final NHttpClientIOTarget conn = createConnection(

http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/0a543bb8/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLServerIOEventDispatch.java
----------------------------------------------------------------------
diff --git a/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLServerIOEventDispatch.java b/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLServerIOEventDispatch.java
index af388bf..1e901dc 100644
--- a/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLServerIOEventDispatch.java
+++ b/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLServerIOEventDispatch.java
@@ -61,7 +61,7 @@ public class SSLServerIOEventDispatch implements IOEventDispatch {
     private static final String SSL_SESSION = "SSL_SESSION";
 
     protected final NHttpServiceHandler handler;
-    protected final SSLContext sslContext;
+    protected final SSLContext sslcontext;
     protected final SSLIOSessionHandler sslHandler;
     protected final HttpParams params;
 
@@ -87,7 +87,7 @@ public class SSLServerIOEventDispatch implements IOEventDispatch {
         Args.notNull(params, "HTTP parameters");
         this.handler = handler;
         this.params = params;
-        this.sslContext = sslContext;
+        this.sslcontext = sslContext;
         this.sslHandler = sslHandler;
     }
 
@@ -178,7 +178,7 @@ public class SSLServerIOEventDispatch implements IOEventDispatch {
 
         final SSLIOSession sslSession = createSSLIOSession(
                 session,
-                this.sslContext,
+                this.sslcontext,
                 this.sslHandler);
 
         final NHttpServerIOTarget conn = createConnection(