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

Gavin King gavin.king at jboss.com
Thu Jan 25 13:08:23 EST 2007


  User: gavin   
  Date: 07/01/25 13:08:23

  Modified:    src/main/org/jboss/seam/exceptions 
                        ConfigRedirectHandler.java
  Log:
  minor fix
  
  Revision  Changes    Path
  1.2       +2 -1      jboss-seam/src/main/org/jboss/seam/exceptions/ConfigRedirectHandler.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConfigRedirectHandler.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/exceptions/ConfigRedirectHandler.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ConfigRedirectHandler.java	17 Dec 2006 19:46:41 -0000	1.1
  +++ ConfigRedirectHandler.java	25 Jan 2007 18:08:23 -0000	1.2
  @@ -40,7 +40,8 @@
      public boolean isHandler(Exception e)
      {
         return clazz.isInstance(e) && 
  -            Lifecycle.getPhaseId()!=PhaseId.RENDER_RESPONSE;
  +            Lifecycle.getPhaseId()!=PhaseId.RENDER_RESPONSE && 
  +            Lifecycle.getPhaseId()!=null;
      }
   
      @Override
  
  
  



More information about the jboss-cvs-commits mailing list