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

Gavin King gavin.king at jboss.com
Thu Nov 2 21:32:39 EST 2006


  User: gavin   
  Date: 06/11/02 21:32:39

  Modified:    src/main/org/jboss/seam/servlet  SeamExceptionFilter.java
  Log:
  fixed two bugs in exception handling
  
  Revision  Changes    Path
  1.19      +2 -1      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.18
  retrieving revision 1.19
  diff -u -b -r1.18 -r1.19
  --- SeamExceptionFilter.java	28 Sep 2006 23:03:09 -0000	1.18
  +++ SeamExceptionFilter.java	3 Nov 2006 02:32:39 -0000	1.19
  @@ -15,6 +15,7 @@
   import javax.servlet.ServletException;
   import javax.servlet.ServletRequest;
   import javax.servlet.ServletResponse;
  +import javax.servlet.http.HttpServletRequest;
   
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
  @@ -77,7 +78,7 @@
         Lifecycle.setException(true);
         try 
         {
  -         Lifecycle.beginExceptionRecovery(context, request); //the faces ExternalContext is useless to us at this point
  +         Lifecycle.beginExceptionRecovery( context, (HttpServletRequest) request ); //the faces ExternalContext is useless to us at this point
            Lifecycle.endRequest();
         }
         catch (Exception ee)
  
  
  



More information about the jboss-cvs-commits mailing list