java/scripts/hbm-templates/javaheader.txt | 2 --
java/scripts/java-templates/actionbody.txt | 5 +++--
java/scripts/java-templates/struts-template.xml | 2 +-
java/scripts/java-templates/testbody.txt | 2 --
4 files changed, 4 insertions(+), 7 deletions(-)
New commits:
commit d099f7bce4d65484485f3ce53e6deb6cacc3bca4
Author: Tomas Lestach <tlestach(a)redhat.com>
Date: Fri May 31 15:31:24 2013 +0200
fix more checkstyle issues in the java-create-page.pl
diff --git a/java/scripts/hbm-templates/javaheader.txt b/java/scripts/hbm-templates/javaheader.txt
index 5b614b7..380fa69 100644
--- a/java/scripts/hbm-templates/javaheader.txt
+++ b/java/scripts/hbm-templates/javaheader.txt
@@ -1,6 +1,5 @@
/**
* Copyright (c) 2013 Red Hat, Inc.
- * All Rights Reserved.
*
* This software is licensed to you under the GNU General Public License,
* version 2 (GPLv2). There is NO WARRANTY for this software, express or
@@ -12,7 +11,6 @@
* Red Hat trademarks are not licensed under GPLv2. No permission is
* granted to use or replicate Red Hat trademarks that are incorporated
* in this software or its documentation.
- *
*/
package ###PACKAGE###;
diff --git a/java/scripts/java-templates/actionbody.txt b/java/scripts/java-templates/actionbody.txt
index 76f9e20..ee6e0ca 100644
--- a/java/scripts/java-templates/actionbody.txt
+++ b/java/scripts/java-templates/actionbody.txt
@@ -1,12 +1,13 @@
/** {@inheritDoc} */
- public ActionForward execute (ActionMapping mapping,
+ public ActionForward execute(ActionMapping mapping,
ActionForm formIn,
HttpServletRequest request,
HttpServletResponse response) {
Map params = makeParamMap(request);
- return StrutsDelegate.getInstance().forwardParams(mapping.findForward("default"), params);
+ return StrutsDelegate.getInstance().forwardParams(
+ mapping.findForward("default"), params);
}
diff --git a/java/scripts/java-templates/struts-template.xml b/java/scripts/java-templates/struts-template.xml
index 976f22b..eef4ab8 100644
--- a/java/scripts/java-templates/struts-template.xml
+++ b/java/scripts/java-templates/struts-template.xml
@@ -1,4 +1,4 @@
- <!-- IMPORTED ACTION - PLEASE MOVE TO PROPER LOCATION
+ <!-- IMPORTED ACTION - PLEASE MOVE TO PROPER LOCATION
<action path="###ACTIONPATH###"
scope="request"
input="/WEB-INF/pages/###JSPPATH###"
diff --git a/java/scripts/java-templates/testbody.txt b/java/scripts/java-templates/testbody.txt
index 0677a79..cce28e5 100644
--- a/java/scripts/java-templates/testbody.txt
+++ b/java/scripts/java-templates/testbody.txt
@@ -1,6 +1,5 @@
/**
* Copyright (c) 2013 Red Hat, Inc.
- * All Rights Reserved.
*
* This software is licensed to you under the GNU General Public License,
* version 2 (GPLv2). There is NO WARRANTY for this software, express or
@@ -12,7 +11,6 @@
* Red Hat trademarks are not licensed under GPLv2. No permission is
* granted to use or replicate Red Hat trademarks that are incorporated
* in this software or its documentation.
- *
*/
package ###PACKAGE###;