You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2007/08/09 18:52:10 UTC

svn commit: r564278 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/application/ActionListenerImpl.java

Author: weber
Date: Thu Aug  9 09:52:07 2007
New Revision: 564278

URL: http://svn.apache.org/viewvc?view=rev&rev=564278
Log:
(TOBAGO-463) ActionListenerImpl should not catch AbortProcessingException
  checkstyle

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/application/ActionListenerImpl.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/application/ActionListenerImpl.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/application/ActionListenerImpl.java?view=diff&rev=564278&r1=564277&r2=564278
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/application/ActionListenerImpl.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/application/ActionListenerImpl.java Thu Aug  9 09:52:07 2007
@@ -57,7 +57,7 @@
         Throwable fe = e;
         while (fe != null) {
           if (fe instanceof AbortProcessingException) {
-            throw (FacesException)e;
+            throw (FacesException) e;
           }
           fe = fe.getCause();
         }