costin      01/01/20 13:33:04

  Modified:    src/facade22/org/apache/tomcat/facade JspInterceptor.java
                        RequestDispatcherImpl.java
  Log:
  Remove a trace message in JspInterceptor ( was used during development ).
  
  Fix a small typo/bug in RequestDispatcherImpl ( propagate the original
  exception - ")" was misplaced )
  
  Revision  Changes    Path
  1.5       +2 -1      
jakarta-tomcat/src/facade22/org/apache/tomcat/facade/JspInterceptor.java
  
  Index: JspInterceptor.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/facade22/org/apache/tomcat/facade/JspInterceptor.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- JspInterceptor.java       2001/01/14 20:48:45     1.4
  +++ JspInterceptor.java       2001/01/20 21:33:04     1.5
  @@ -960,7 +960,8 @@
                baseClassN=jspFile.substring( 1, extIdx );
        }
   
  -     System.out.println("XXXMangler: " + jspFile + " " + pkgDir + " " + baseClassN);
  +     //      System.out.println("XXXMangler: " + jspFile + " " +
  +     // pkgDir + " " + baseClassN);
   
        // extract version from the .class dir, using the base name
        version=JavaGeneratorTool.readVersion(classDir,
  
  
  
  1.11      +1 -1      
jakarta-tomcat/src/facade22/org/apache/tomcat/facade/RequestDispatcherImpl.java
  
  Index: RequestDispatcherImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/facade22/org/apache/tomcat/facade/RequestDispatcherImpl.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- RequestDispatcherImpl.java        2001/01/08 12:15:21     1.10
  +++ RequestDispatcherImpl.java        2001/01/20 21:33:04     1.11
  @@ -235,7 +235,7 @@
                throw (ServletException) ex;
            else
                throw new ServletException
  -                 (sm.getString("dispatcher.forwardException", ex));
  +                 (sm.getString("dispatcher.forwardException"), ex );
        }
   
        // close the response - output after this point will be discarded.
  
  
  

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

Reply via email to