You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2010/01/05 14:07:19 UTC

svn commit: r896027 - /myfaces/core/trunk/api/src/main/java/javax/faces/component/UIComponent.java

Author: matzew
Date: Tue Jan  5 13:07:17 2010
New Revision: 896027

URL: http://svn.apache.org/viewvc?rev=896027&view=rev
Log:
MYFACES-2472 Missing return in UIComponent.EventListenerWrapper

thx to Michael Kurz for the patch

Modified:
    myfaces/core/trunk/api/src/main/java/javax/faces/component/UIComponent.java

Modified: myfaces/core/trunk/api/src/main/java/javax/faces/component/UIComponent.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/java/javax/faces/component/UIComponent.java?rev=896027&r1=896026&r2=896027&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/java/javax/faces/component/UIComponent.java (original)
+++ myfaces/core/trunk/api/src/main/java/javax/faces/component/UIComponent.java Tue Jan  5 13:07:17 2010
@@ -1096,7 +1096,7 @@
         {
             if (!(listener instanceof UIComponent) && listener instanceof PartialStateHolder)
             {
-                ((PartialStateHolder)listener).initialStateMarked();
+                return ((PartialStateHolder)listener).initialStateMarked();
             }
             return false;
         }
@@ -1148,4 +1148,4 @@
             }            
         }
     }
-}
\ No newline at end of file
+}