remm        2004/01/26 11:48:43

  Modified:    http11/src/java/org/apache/coyote/http11 Http11Protocol.java
  Log:
  - Remove compilation warnings.
  
  Revision  Changes    Path
  1.49      +4 -3      
jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Protocol.java
  
  Index: Http11Protocol.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Protocol.java,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- Http11Protocol.java       26 Jan 2004 18:16:23 -0000      1.48
  +++ Http11Protocol.java       26 Jan 2004 19:48:43 -0000      1.49
  @@ -745,12 +745,12 @@
                   TcpConnection.shutdownInput( socket );
               } catch(java.net.SocketException e) {
                   // SocketExceptions are normal
  -                proto.log.debug
  +                Http11Protocol.log.debug
                       (sm.getString
                        ("http11protocol.proto.socketexception.debug"), e);
               } catch (java.io.IOException e) {
                   // IOExceptions are normal 
  -                proto.log.debug
  +                Http11Protocol.log.debug
                       (sm.getString
                        ("http11protocol.proto.ioexception.debug"), e);
               }
  @@ -761,7 +761,8 @@
                   // any other exception or error is odd. Here we log it
                   // with "ERROR" level, so it will show up even on
                   // less-than-verbose logs.
  -                proto.log.error(sm.getString("http11protocol.proto.error"), e);
  +                Http11Protocol.log.error
  +                    (sm.getString("http11protocol.proto.error"), e);
               } finally {
                   //       if(proto.adapter != null) proto.adapter.recycle();
                   //                processor.recycle();
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to