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

svn commit: r372935 - /myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/component/html/ext/UIComponentPerspective.java

Author: mmarinschek
Date: Fri Jan 27 10:14:24 2006
New Revision: 372935

URL: http://svn.apache.org/viewcvs?rev=372935&view=rev
Log:
forgot to return the return value of the callback method

Modified:
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/component/html/ext/UIComponentPerspective.java

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/component/html/ext/UIComponentPerspective.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/component/html/ext/UIComponentPerspective.java?rev=372935&r1=372934&r2=372935&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/component/html/ext/UIComponentPerspective.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/component/html/ext/UIComponentPerspective.java Fri Jan 27 10:14:24 2006
@@ -77,11 +77,12 @@
         this.rowIndex = rowIndex;
     }
 
-    public void executeOn(FacesContext context, ExecuteOnCallback callback)
+    public Object executeOn(FacesContext context, ExecuteOnCallback callback)
     {
         setupPerspective();
-        callback.execute(context, delegate);
+        Object retVal = callback.execute(context, delegate);
         teardownPerspective();
+        return retVal;
     }
 
     private UIComponent innerGetDelegate()