jfarcand    2003/04/04 14:51:18

  Modified:    catalina/src/share/org/apache/catalina/core
                        ApplicationDispatcher.java
  Log:
  Do not print the exception since it has been previously logged (and also that not 
the proper exception)
  
  Revision  Changes    Path
  1.13      +6 -6      
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/ApplicationDispatcher.java
  
  Index: ApplicationDispatcher.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/ApplicationDispatcher.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- ApplicationDispatcher.java        18 Mar 2003 16:23:36 -0000      1.12
  +++ ApplicationDispatcher.java        4 Apr 2003 22:51:18 -0000       1.13
  @@ -13,7 +13,7 @@
    * Redistribution and use in source and binary forms, with or without
    * modification, are permitted provided that the following conditions
    * are met:
  - *
  + *5
    * 1. Redistributions of source code must retain the above copyright
    *    notice, this list of conditions and the following disclaimer.
    *
  @@ -520,7 +520,7 @@
                   AccessController.doPrivileged(dp);
               } catch (PrivilegedActionException pe) {
                   Exception e = pe.getException();
  -                pe.printStackTrace();
  +
                   if (e instanceof ServletException)
                       throw (ServletException) e;
                   throw (IOException) e;
  
  
  

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

Reply via email to