Author: markt
Date: Thu Nov 19 14:01:27 2009
New Revision: 882148

URL: http://svn.apache.org/viewvc?rev=882148&view=rev
Log:
Remove unused code

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java

Modified: 
tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java?rev=882148&r1=882147&r2=882148&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java 
(original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java 
Thu Nov 19 14:01:27 2009
@@ -161,7 +161,6 @@
                  asock.addHandshakeCompletedListener(
                          new DisableSslRenegotiation());
              }
-             configureClientAuth(asock);
         } catch (SSLException e){
           throw new SocketException("SSL handshake error" + e.toString());
         }
@@ -746,17 +745,6 @@
     }
 
     /**
-     * Configure Client authentication for this version of JSSE.  The
-     * JSSE included in Java 1.4 supports the 'want' value.  Prior
-     * versions of JSSE will treat 'want' as 'false'.
-     * @param socket the SSLSocket
-     */
-    protected void configureClientAuth(SSLSocket socket){
-        // Per JavaDocs: SSLSockets returned from 
-        // SSLServerSocket.accept() inherit this setting.
-    }
-    
-    /**
      * Configures the given SSL server socket with the requested cipher suites,
      * protocol versions, and need for client authentication
      */



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to