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

Gavin King gavin.king at jboss.com
Wed Nov 15 01:55:47 EST 2006


  User: gavin   
  Date: 06/11/15 01:55:47

  Modified:    src/main/org/jboss/seam/core  Exceptions.java
  Log:
  fix cope/paste bug
  
  Revision  Changes    Path
  1.12      +2 -2      jboss-seam/src/main/org/jboss/seam/core/Exceptions.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Exceptions.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Exceptions.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -b -r1.11 -r1.12
  --- Exceptions.java	10 Nov 2006 19:07:00 -0000	1.11
  +++ Exceptions.java	15 Nov 2006 06:55:47 -0000	1.12
  @@ -260,7 +260,7 @@
   
         protected boolean isRollback(Exception e)
         {
  -         return e.getClass().getAnnotation(HttpError.class).rollback();
  +         return e.getClass().getAnnotation(Redirect.class).rollback();
         }
         
         @Override
  @@ -304,7 +304,7 @@
   
         protected boolean isRollback(Exception e)
         {
  -         return e.getClass().getAnnotation(HttpError.class).rollback();
  +         return e.getClass().getAnnotation(Render.class).rollback();
         }
         
         @Override
  
  
  



More information about the jboss-cvs-commits mailing list