You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2013/07/25 23:24:24 UTC

svn commit: r1507133 - /httpcomponents/httpcore/branches/4.2.x/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLIOSession.java

Author: sebb
Date: Thu Jul 25 21:24:24 2013
New Revision: 1507133

URL: http://svn.apache.org/r1507133
Log:
Tab police

Modified:
    httpcomponents/httpcore/branches/4.2.x/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLIOSession.java

Modified: httpcomponents/httpcore/branches/4.2.x/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLIOSession.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.2.x/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLIOSession.java?rev=1507133&r1=1507132&r2=1507133&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.2.x/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLIOSession.java (original)
+++ httpcomponents/httpcore/branches/4.2.x/httpcore-nio/src/main/java/org/apache/http/nio/reactor/ssl/SSLIOSession.java Thu Jul 25 21:24:24 2013
@@ -623,11 +623,11 @@ public class SSLIOSession implements IOS
     }
     
     public Socket getSocket(){
-    	if (this.session instanceof SocketAccessor){
-    		return ((SocketAccessor) this.session).getSocket();
-    	} else {
-    		return null;
-    	}
+        if (this.session instanceof SocketAccessor){
+            return ((SocketAccessor) this.session).getSocket();
+        } else {
+            return null;
+        }
     }
 
     private class InternalByteChannel implements ByteChannel {