You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by sd...@apache.org on 2017/05/01 07:23:34 UTC

[6/8] struts-examples git commit: removed blank lines

removed blank lines


Project: http://git-wip-us.apache.org/repos/asf/struts-examples/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts-examples/commit/b48664e7
Tree: http://git-wip-us.apache.org/repos/asf/struts-examples/tree/b48664e7
Diff: http://git-wip-us.apache.org/repos/asf/struts-examples/diff/b48664e7

Branch: refs/heads/master
Commit: b48664e75868837233168649c80c2be31ef7055e
Parents: 5a46e4e
Author: Stefaan Dutry <st...@gmail.com>
Authored: Sun Apr 30 15:45:04 2017 +0200
Committer: Stefaan Dutry <st...@gmail.com>
Committed: Sun Apr 30 15:45:04 2017 +0200

----------------------------------------------------------------------
 .../java/org/apache/struts/helloworld/action/HelloWorldAction.java | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts-examples/blob/b48664e7/form-processing/src/main/java/org/apache/struts/helloworld/action/HelloWorldAction.java
----------------------------------------------------------------------
diff --git a/form-processing/src/main/java/org/apache/struts/helloworld/action/HelloWorldAction.java b/form-processing/src/main/java/org/apache/struts/helloworld/action/HelloWorldAction.java
index 39eec33..95b7408 100644
--- a/form-processing/src/main/java/org/apache/struts/helloworld/action/HelloWorldAction.java
+++ b/form-processing/src/main/java/org/apache/struts/helloworld/action/HelloWorldAction.java
@@ -55,9 +55,7 @@ public class HelloWorldAction extends ActionSupport {
         //Action included a query string parameter of userName
         //or a form field with name of userName
         if (userName != null) {
-            
             messageStore.setMessage( messageStore.getMessage() + " " + userName);
-            
         }
         
         helloCount++;