You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2002/06/19 11:25:39 UTC

cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 CoyoteServerSocketFactory.java

remm        2002/06/19 02:25:39

  Modified:    coyote/src/java/org/apache/coyote/tomcat4
                        CoyoteServerSocketFactory.java
  Log:
  - Should fix compilation problem with 4.0.4.
  
  Revision  Changes    Path
  1.4       +3 -12     jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteServerSocketFactory.java
  
  Index: CoyoteServerSocketFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteServerSocketFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CoyoteServerSocketFactory.java	28 May 2002 14:24:31 -0000	1.3
  +++ CoyoteServerSocketFactory.java	19 Jun 2002 09:25:39 -0000	1.4
  @@ -251,27 +251,18 @@
       // --------------------------------------------------------- Public Methods
   
   
  -    public ServerSocket createSocket(int port)
  -        throws IOException, KeyStoreException, NoSuchAlgorithmException,
  -        CertificateException, UnrecoverableKeyException,
  -        KeyManagementException {
  +    public ServerSocket createSocket(int port) {
           return (null);
       }
   
   
  -    public ServerSocket createSocket(int port, int backlog)
  -        throws IOException, KeyStoreException, NoSuchAlgorithmException,
  -        CertificateException, UnrecoverableKeyException,
  -        KeyManagementException {
  +    public ServerSocket createSocket(int port, int backlog) {
           return (null);
       }
   
   
       public ServerSocket createSocket(int port, int backlog,
  -                                     InetAddress ifAddress)
  -        throws IOException, KeyStoreException, NoSuchAlgorithmException,
  -        CertificateException, UnrecoverableKeyException,
  -        KeyManagementException {
  +                                     InetAddress ifAddress) {
           return (null);
       }
   
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>