You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2010/07/17 16:58:14 UTC

svn commit: r965093 - /click/trunk/click/examples/src/org/apache/click/examples/page/ajax/PageActionPage.java

Author: sabob
Date: Sat Jul 17 14:58:14 2010
New Revision: 965093

URL: http://svn.apache.org/viewvc?rev=965093&view=rev
Log:
cleanup

Modified:
    click/trunk/click/examples/src/org/apache/click/examples/page/ajax/PageActionPage.java

Modified: click/trunk/click/examples/src/org/apache/click/examples/page/ajax/PageActionPage.java
URL: http://svn.apache.org/viewvc/click/trunk/click/examples/src/org/apache/click/examples/page/ajax/PageActionPage.java?rev=965093&r1=965092&r2=965093&view=diff
==============================================================================
--- click/trunk/click/examples/src/org/apache/click/examples/page/ajax/PageActionPage.java (original)
+++ click/trunk/click/examples/src/org/apache/click/examples/page/ajax/PageActionPage.java Sat Jul 17 14:58:14 2010
@@ -48,11 +48,11 @@ public class PageActionPage extends Bord
 
     // Note the pageAction method signature: a no-arg method returning a Partial
     public Partial onLinkClicked() {
-        // Formatted date instance that will be added to the
+        // Formatted date instance that will be returned to the browser
         String now = format.currentDate("MMM, yyyy dd HH:MM:ss");
 
-        String msg = "PageAction method <tt>onLinkClicked()</tt> invoked at: "
-            + now;
+        String msg = "PageAction method <tt>onLinkClicked()</tt> invoked at: " + now;
+
         // Return a partial containing the message
         return new Partial(msg, Partial.HTML);
     }