You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2013/02/20 09:27:55 UTC

svn commit: r1448035 - /myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/Reload.java

Author: lofwyr
Date: Wed Feb 20 08:27:55 2013
New Revision: 1448035

URL: http://svn.apache.org/r1448035
Log:
JSF action should return a String

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/Reload.java

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/Reload.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/Reload.java?rev=1448035&r1=1448034&r2=1448035&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/Reload.java (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/Reload.java Wed Feb 20 08:27:55 2013
@@ -33,8 +33,9 @@ public class Reload {
     return null;
   }
 
-  public void reset() {
+  public String reset() {
     counter = 0;
+    return null;
   }
 
   public boolean isOnlyEven() {