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 2017/05/05 05:20:25 UTC

svn commit: r1793943 - in /httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio: SSLClientIOEventDispatch.java SSLServerIOEventDispatch.java

Author: ggregory
Date: Fri May  5 05:20:25 2017
New Revision: 1793943

URL: http://svn.apache.org/viewvc?rev=1793943&view=rev
Log:
Revert: Rename variables "sslcontext" to "sslContext".

Modified:
    httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLClientIOEventDispatch.java
    httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLServerIOEventDispatch.java

Modified: httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLClientIOEventDispatch.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLClientIOEventDispatch.java?rev=1793943&r1=1793942&r2=1793943&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLClientIOEventDispatch.java (original)
+++ httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLClientIOEventDispatch.java Fri May  5 05:20:25 2017
@@ -61,7 +61,7 @@ public class SSLClientIOEventDispatch im
     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 im
         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 im
 
         final SSLIOSession sslSession = createSSLIOSession(
                 session,
-                this.sslContext,
+                this.sslcontext,
                 this.sslHandler);
 
         final NHttpClientIOTarget conn = createConnection(

Modified: httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLServerIOEventDispatch.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLServerIOEventDispatch.java?rev=1793943&r1=1793942&r2=1793943&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLServerIOEventDispatch.java (original)
+++ httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java-deprecated/org/apache/http/impl/nio/SSLServerIOEventDispatch.java Fri May  5 05:20:25 2017
@@ -61,7 +61,7 @@ public class SSLServerIOEventDispatch im
     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 im
         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 im
 
         final SSLIOSession sslSession = createSSLIOSession(
                 session,
-                this.sslContext,
+                this.sslcontext,
                 this.sslHandler);
 
         final NHttpServerIOTarget conn = createConnection(