[jboss-cvs] jboss-seam/src/main/org/jboss/seam/servlet ...

Gavin King gavin.king at jboss.com
Wed Nov 29 07:51:33 EST 2006


  User: gavin   
  Date: 06/11/29 07:51:33

  Modified:    src/main/org/jboss/seam/servlet  SeamExceptionFilter.java
  Log:
  delete obsolete code
  
  Revision  Changes    Path
  1.20      +2 -7      jboss-seam/src/main/org/jboss/seam/servlet/SeamExceptionFilter.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SeamExceptionFilter.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/servlet/SeamExceptionFilter.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -b -r1.19 -r1.20
  --- SeamExceptionFilter.java	3 Nov 2006 02:32:39 -0000	1.19
  +++ SeamExceptionFilter.java	29 Nov 2006 12:51:33 -0000	1.20
  @@ -75,19 +75,14 @@
   
      private void endWebRequestAfterException(ServletRequest request)
      {
  -      Lifecycle.setException(true);
         try 
         {
            Lifecycle.beginExceptionRecovery( context, (HttpServletRequest) request ); //the faces ExternalContext is useless to us at this point
            Lifecycle.endRequest();
         }
  -      catch (Exception ee)
  +      catch (Exception e)
         {
  -         log.error("could not destroy contexts", ee);
  -      }
  -      finally
  -      {
  -         Lifecycle.setException(false);
  +         log.error("could not destroy contexts", e);
         }
      }
   
  
  
  



More information about the jboss-cvs-commits mailing list