• R/O
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修订版2616 (tree)
时间2023-12-06 20:02:50
作者t_nakayama1971

Log Message

(empty log message)

更改概述

差异

--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionFormBean.java (revision 2615)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionFormBean.java (revision 2616)
@@ -59,7 +59,6 @@
5959 * @param className Fully qualified class name
6060 */
6161 public ActionFormBean(final String beanName, final String className) {
62- super();
6362 setName(beanName);
6463 setType(className);
6564 }
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionForward.java (revision 2615)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionForward.java (revision 2616)
@@ -105,7 +105,6 @@
105105 * @param redirect Redirect flag for this instance
106106 */
107107 public ActionForward(final String name, final String path, final boolean redirect) {
108- super();
109108 setName(name);
110109 setPath(path);
111110 setRedirect(redirect);
@@ -122,7 +121,6 @@
122121 */
123122 public ActionForward(final String name, final String path, final boolean redirect,
124123 final String module) {
125- super();
126124 setName(name);
127125 setPath(path);
128126 setRedirect(redirect);
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionMessages.java (revision 2615)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionMessages.java (revision 2616)
@@ -99,7 +99,6 @@
9999 * @since Struts 1.1
100100 */
101101 public ActionMessages(final ActionMessages val) {
102- super();
103102 add(val);
104103 }
105104
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ForwardingActionForward.java (revision 2615)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ForwardingActionForward.java (revision 2616)
@@ -46,7 +46,6 @@
4646 * @param path Path for this instance
4747 */
4848 public ForwardingActionForward(final String path) {
49- super();
5049 setName(null);
5150 setPath(path);
5251 setRedirect(false);
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/RedirectingActionForward.java (revision 2615)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/RedirectingActionForward.java (revision 2616)
@@ -48,7 +48,6 @@
4848 * @param path Path for this instance
4949 */
5050 public RedirectingActionForward(final String path) {
51- super();
5251 setName(null);
5352 setPath(path);
5453 setRedirect(true);
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ConfigHelper.java (revision 2615)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ConfigHelper.java (revision 2616)
@@ -97,7 +97,6 @@
9797 */
9898 public ConfigHelper(final ServletContext ctx, final HttpServletRequest req,
9999 final HttpServletResponse res) {
100- super();
101100 setResources(ctx, req, res);
102101 }
103102
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ConfigRuleSet.java (revision 2615)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ConfigRuleSet.java (revision 2616)
@@ -329,7 +329,6 @@
329329 * @param loader ClassLoader
330330 */
331331 ActionFormBeanFactory(final ClassLoader loader) {
332- super();
333332 this.cl = loader;
334333 }
335334
@@ -399,7 +398,6 @@
399398 * @param loader ClassLoader
400399 */
401400 ActionMappingFactory(final ClassLoader loader) {
402- super();
403401 this.cl = loader;
404402 }
405403
@@ -468,7 +466,6 @@
468466 * @param loader ClassLoader
469467 */
470468 GlobalForwardFactory(final ClassLoader loader) {
471- super();
472469 this.cl = loader;
473470 }
474471
@@ -516,7 +513,6 @@
516513 * @param loader ClassLoader
517514 */
518515 ActionForwardFactory(final ClassLoader loader) {
519- super();
520516 this.cl = loader;
521517 }
522518
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ForwardConfig.java (revision 2615)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ForwardConfig.java (revision 2616)
@@ -131,7 +131,6 @@
131131 * @param val3 Should we do a redirect?
132132 */
133133 public ForwardConfig(final String val1, final String val2, final boolean val3) {
134- super();
135134 setName(val1);
136135 setPath(val2);
137136 setRedirect(val3);
@@ -148,7 +147,6 @@
148147 */
149148 public ForwardConfig(final String val1, final String val2, final boolean val3,
150149 final String val4) {
151- super();
152150 setName(val1);
153151 setPath(val2);
154152 setRedirect(val3);
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/impl/ModuleConfigImpl.java (revision 2615)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/impl/ModuleConfigImpl.java (revision 2616)
@@ -170,7 +170,6 @@
170170 * @param val Context-relative URI prefix for this module
171171 */
172172 public ModuleConfigImpl(final String val) {
173- super();
174173 this.prefix = val;
175174 this.actionConfigs = new HashMap<>();
176175 this.actionConfigIds = new HashMap<>();