• R/O
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revision2615 (tree)
Zeit2023-12-06 19:12:25
Autort_nakayama1971

Log Message

(empty log message)

Ändern Zusammenfassung

Diff

--- trunk/apache/struts1-core/src/main/java/org/apache/commons/chain2/web/servlet/ServletWebContextBase.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/commons/chain2/web/servlet/ServletWebContextBase.java (revision 2615)
@@ -117,7 +117,7 @@
117117 * <p>Construct an uninitialized {@link ServletWebContextBase} instance.</p>
118118 */
119119 public ServletWebContextBase() {
120- super();
120+ this(null, null, null);
121121 }
122122
123123 /**
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionErrors.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionErrors.java (revision 2615)
@@ -53,7 +53,7 @@
5353 * <p>Create an empty <code>ActionErrors</code> object.</p>
5454 */
5555 public ActionErrors() {
56- super();
56+ this(null);
5757 }
5858
5959 /**
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionFormBean.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionFormBean.java (revision 2615)
@@ -49,7 +49,7 @@
4949 * <p>Construct an instance with default values.</p>
5050 */
5151 public ActionFormBean() {
52- super();
52+ this(null, null);
5353 }
5454
5555 /**
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionForward.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionForward.java (revision 2615)
@@ -93,10 +93,7 @@
9393 * @param redirect Redirect flag for this instance
9494 */
9595 public ActionForward(final String path, final boolean redirect) {
96- super();
97- setName(null);
98- setPath(path);
99- setRedirect(redirect);
96+ this(null, path, redirect);
10097 }
10198
10299 /**
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionMessages.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/ActionMessages.java (revision 2615)
@@ -87,7 +87,7 @@
8787 * <p>Create an empty <code>ActionMessages</code> object.</p>
8888 */
8989 public ActionMessages() {
90- super();
90+ this(null);
9191 }
9292
9393 /**
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/InvalidCancelException.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/InvalidCancelException.java (revision 2615)
@@ -35,7 +35,7 @@
3535 * <p>Default constructor.</p>
3636 */
3737 public InvalidCancelException() {
38- super();
38+ this(null);
3939 }
4040
4141 /**
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/RequestActionMapping.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/RequestActionMapping.java (revision 2615)
@@ -38,7 +38,6 @@
3838 * bean scope.</p>
3939 */
4040 public RequestActionMapping() {
41- super();
4241 setScope("request");
4342 }
4443 }
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/action/SessionActionMapping.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/action/SessionActionMapping.java (revision 2615)
@@ -38,7 +38,6 @@
3838 * bean scope.</p>
3939 */
4040 public SessionActionMapping() {
41- super();
4241 setScope("session");
4342 }
4443 }
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/chain/commands/InvalidPathException.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/chain/commands/InvalidPathException.java (revision 2615)
@@ -41,7 +41,6 @@
4141 * <p> Default, no-argument constructor. </p>
4242 */
4343 public InvalidPathException() {
44- super();
4544 this.path = null;
4645 }
4746
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/chain/commands/UnauthorizedActionException.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/chain/commands/UnauthorizedActionException.java (revision 2615)
@@ -37,7 +37,7 @@
3737 * <p> Default no-argument constructor. </p>
3838 */
3939 public UnauthorizedActionException() {
40- super();
40+ this(null);
4141 }
4242
4343 /**
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/chain/contexts/ServletActionContext.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/chain/contexts/ServletActionContext.java (revision 2615)
@@ -294,7 +294,7 @@
294294 */
295295 @Override
296296 public void saveToken() {
297- super.getTokenProcessor().saveToken(getRequest());
297+ getTokenProcessor().saveToken(getRequest());
298298 }
299299
300300 /**
@@ -302,7 +302,7 @@
302302 */
303303 @Override
304304 public String generateToken() {
305- return super.getTokenProcessor().generateToken(getRequest());
305+ return getTokenProcessor().generateToken(getRequest());
306306 }
307307
308308 /**
@@ -310,7 +310,7 @@
310310 */
311311 @Override
312312 public boolean isTokenValid(final boolean reset) {
313- return super.getTokenProcessor().isTokenValid(getRequest(), reset);
313+ return getTokenProcessor().isTokenValid(getRequest(), reset);
314314 }
315315
316316 /**
@@ -318,7 +318,7 @@
318318 */
319319 @Override
320320 public void resetToken() {
321- super.getTokenProcessor().resetToken(getRequest());
321+ getTokenProcessor().resetToken(getRequest());
322322 }
323323
324324 /**
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/chain/contexts/WebActionContext.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/chain/contexts/WebActionContext.java (revision 2615)
@@ -49,7 +49,7 @@
4949 * @return The wrapped WebContext
5050 */
5151 protected WebContext<String, Object> webContext() {
52- return super.getBaseContext();
52+ return getBaseContext();
5353 }
5454
5555 // -------------------------------
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ActionConfig.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ActionConfig.java (revision 2615)
@@ -258,7 +258,7 @@
258258 * @since Struts 1.3.6
259259 */
260260 public void setActionId(final String aid) {
261- super.throwIfConfigured();
261+ throwIfConfigured();
262262
263263 if (aid != null && aid.indexOf('/') > -1) {
264264 throw new IllegalArgumentException(
@@ -281,7 +281,7 @@
281281 * @param config ModuleConfig
282282 */
283283 public void setModuleConfig(final ModuleConfig config) {
284- super.throwIfConfigured();
284+ throwIfConfigured();
285285
286286 this.moduleConfig = config;
287287 }
@@ -309,7 +309,7 @@
309309 * under which our form bean is access.
310310 */
311311 public void setAttribute(final String val) {
312- super.throwIfConfigured();
312+ throwIfConfigured();
313313
314314 this.attribute = val;
315315 }
@@ -329,7 +329,7 @@
329329 * @param val boolean
330330 */
331331 public void setCancellable(final boolean val) {
332- super.throwIfConfigured();
332+ throwIfConfigured();
333333
334334 this.cancellable = val;
335335 this.cancellableSet = true;
@@ -354,7 +354,7 @@
354354 * inherit properties from.
355355 */
356356 public void setExtends(final String val) {
357- super.throwIfConfigured();
357+ throwIfConfigured();
358358
359359 this.inherit = val;
360360 }
@@ -386,7 +386,7 @@
386386 * that will process this request.
387387 */
388388 public void setForward(final String val) {
389- super.throwIfConfigured();
389+ throwIfConfigured();
390390
391391 this.forward = val;
392392 }
@@ -411,7 +411,7 @@
411411 * that will process this request.
412412 */
413413 public void setInclude(final String val) {
414- super.throwIfConfigured();
414+ throwIfConfigured();
415415
416416 this.include = val;
417417 }
@@ -436,7 +436,7 @@
436436 * should be returned if a validation error is encountered.
437437 */
438438 public void setInput(final String val) {
439- super.throwIfConfigured();
439+ throwIfConfigured();
440440
441441 this.input = val;
442442 }
@@ -461,7 +461,7 @@
461461 * implementation class.
462462 */
463463 public void setMultipartClass(final String multipart) {
464- super.throwIfConfigured();
464+ throwIfConfigured();
465465
466466 this.multipartClass = multipart;
467467 }
@@ -478,7 +478,7 @@
478478 * @param val name of the form bean associated with this Action.
479479 */
480480 public void setName(final String val) {
481- super.throwIfConfigured();
481+ throwIfConfigured();
482482
483483 this.name = val;
484484 }
@@ -501,7 +501,7 @@
501501 * @param val General purpose configuration parameter.
502502 */
503503 public void setParameter(final String val) {
504- super.throwIfConfigured();
504+ throwIfConfigured();
505505
506506 this.parameter = val;
507507 }
@@ -524,7 +524,7 @@
524524 * @param val context-relative path of the submitted request.
525525 */
526526 public void setPath(final String val) {
527- super.throwIfConfigured();
527+ throwIfConfigured();
528528
529529 this.path = val;
530530 }
@@ -543,7 +543,7 @@
543543 * property names, if any.
544544 */
545545 public void setPrefix(final String val) {
546- super.throwIfConfigured();
546+ throwIfConfigured();
547547
548548 this.prefix = val;
549549 }
@@ -559,7 +559,7 @@
559559 * @param val String
560560 */
561561 public void setRoles(final String val) {
562- super.throwIfConfigured();
562+ throwIfConfigured();
563563
564564 this.roles = val;
565565
@@ -612,7 +612,7 @@
612612 * is accessed, if any.
613613 */
614614 public void setScope(final String val) {
615- super.throwIfConfigured();
615+ throwIfConfigured();
616616
617617 this.scope = val;
618618 }
@@ -631,7 +631,7 @@
631631 * property names, if any.
632632 */
633633 public void setSuffix(final String val) {
634- super.throwIfConfigured();
634+ throwIfConfigured();
635635
636636 this.suffix = val;
637637 }
@@ -647,7 +647,7 @@
647647 * @param val String
648648 */
649649 public void setType(final String val) {
650- super.throwIfConfigured();
650+ throwIfConfigured();
651651
652652 this.type = val;
653653 }
@@ -666,7 +666,7 @@
666666 * this module, when true.
667667 */
668668 public void setUnknown(final boolean val) {
669- super.throwIfConfigured();
669+ throwIfConfigured();
670670
671671 this.unknown = val;
672672 }
@@ -682,7 +682,7 @@
682682 * @param val boolean
683683 */
684684 public void setValidate(final boolean val) {
685- super.throwIfConfigured();
685+ throwIfConfigured();
686686
687687 this.validate = val;
688688 this.validateSet = true;
@@ -724,7 +724,7 @@
724724 * @since Struts 1.3.0
725725 */
726726 public void setCommand(final String val) {
727- super.throwIfConfigured();
727+ throwIfConfigured();
728728
729729 this.command = val;
730730 }
@@ -740,7 +740,7 @@
740740 * @since Struts 1.3.0
741741 */
742742 public void setCatalog(final String val) {
743- super.throwIfConfigured();
743+ throwIfConfigured();
744744
745745 this.catalog = val;
746746 }
@@ -783,7 +783,7 @@
783783 */
784784 protected void inheritExceptionHandlers(final ActionConfig baseConfig) {
785785
786- super.throwIfConfigured();
786+ throwIfConfigured();
787787
788788 // Inherit exception handler configs
789789 ExceptionConfig[] baseHandlers = baseConfig.findExceptionConfigs();
@@ -816,7 +816,7 @@
816816 */
817817 protected void inheritForwards(final ActionConfig baseConfig) {
818818
819- super.throwIfConfigured();
819+ throwIfConfigured();
820820
821821 // Inherit forward configs
822822 ForwardConfig[] baseForwards = baseConfig.findForwardConfigs();
@@ -852,7 +852,7 @@
852852 * frozen
853853 */
854854 public void addExceptionConfig(final ExceptionConfig config) {
855- super.throwIfConfigured();
855+ throwIfConfigured();
856856
857857 this.exceptions.put(config.getType(), config);
858858 }
@@ -866,7 +866,7 @@
866866 * frozen
867867 */
868868 public void addForwardConfig(final ForwardConfig config) {
869- super.throwIfConfigured();
869+ throwIfConfigured();
870870
871871 this.forwards.put(config.getName(), config);
872872 }
@@ -998,7 +998,7 @@
998998 */
999999 public void inheritFrom(final ActionConfig config) {
10001000
1001- super.throwIfConfigured();
1001+ throwIfConfigured();
10021002
10031003 // Inherit values that have not been overridden
10041004 setAttribute(getAttribute() == null ? config.getAttribute() : getAttribute());
@@ -1084,7 +1084,7 @@
10841084 */
10851085 public void processExtends(final Map<String, ActionConfig> config) {
10861086
1087- super.throwIfConfigured();
1087+ throwIfConfigured();
10881088
10891089 String ancestorPath = getExtends();
10901090
@@ -1124,7 +1124,7 @@
11241124 * frozen
11251125 */
11261126 public void removeExceptionConfig(final ExceptionConfig config) {
1127- super.throwIfConfigured();
1127+ throwIfConfigured();
11281128
11291129 this.exceptions.remove(config.getType());
11301130 }
@@ -1137,7 +1137,7 @@
11371137 * frozen
11381138 */
11391139 public void removeForwardConfig(final ForwardConfig config) {
1140- super.throwIfConfigured();
1140+ throwIfConfigured();
11411141
11421142 this.forwards.remove(config.getName());
11431143 }
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ConfigHelper.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ConfigHelper.java (revision 2615)
@@ -87,7 +87,7 @@
8787 * constructor
8888 */
8989 public ConfigHelper() {
90- super();
90+ this(null, null, null);
9191 }
9292
9393 /**
@@ -98,7 +98,7 @@
9898 public ConfigHelper(final ServletContext ctx, final HttpServletRequest req,
9999 final HttpServletResponse res) {
100100 super();
101- this.setResources(ctx, req, res);
101+ setResources(ctx, req, res);
102102 }
103103
104104 /**
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ConfigRuleSet.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ConfigRuleSet.java (revision 2615)
@@ -225,13 +225,6 @@
225225 private static final class PlugInSetPropertyRule extends Rule {
226226
227227 /**
228- * constructor
229- */
230- PlugInSetPropertyRule() {
231- super();
232- }
233-
234- /**
235228 * @see org.apache.commons.digester3.Rule#begin(
236229 * java.lang.String, java.lang.String, org.xml.sax.Attributes)
237230 */
@@ -252,13 +245,6 @@
252245 private static final class SetActionFormBeanClassRule extends Rule {
253246
254247 /**
255- * constructor
256- */
257- SetActionFormBeanClassRule() {
258- super();
259- }
260-
261- /**
262248 * @see org.apache.commons.digester3.Rule#begin(
263249 * java.lang.String, java.lang.String, org.xml.sax.Attributes)
264250 */
@@ -382,13 +368,6 @@
382368 private static final class SetActionMappingClassRule extends Rule {
383369
384370 /**
385- * constructor
386- */
387- SetActionMappingClassRule() {
388- super();
389- }
390-
391- /**
392371 * @see org.apache.commons.digester3.Rule#begin(
393372 * java.lang.String, java.lang.String, org.xml.sax.Attributes)
394373 */
@@ -458,13 +437,6 @@
458437 private static final class SetActionForwardClassRule extends Rule {
459438
460439 /**
461- * constructor
462- */
463- SetActionForwardClassRule() {
464- super();
465- }
466-
467- /**
468440 * @see org.apache.commons.digester3.Rule#begin(
469441 * java.lang.String, java.lang.String, org.xml.sax.Attributes)
470442 */
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ControllerConfig.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ControllerConfig.java (revision 2615)
@@ -182,7 +182,7 @@
182182 * @param size BufferSize
183183 */
184184 public void setBufferSize(final int size) {
185- super.throwIfConfigured();
185+ throwIfConfigured();
186186
187187 this.bufferSize = size;
188188 }
@@ -198,7 +198,7 @@
198198 * @param val ContentType
199199 */
200200 public void setContentType(final String val) {
201- super.throwIfConfigured();
201+ throwIfConfigured();
202202
203203 this.contentType = val;
204204 }
@@ -214,7 +214,7 @@
214214 * @param val Catalog
215215 */
216216 public void setCatalog(final String val) {
217- super.throwIfConfigured();
217+ throwIfConfigured();
218218
219219 this.catalog = val;
220220 }
@@ -230,7 +230,7 @@
230230 * @param val Command
231231 */
232232 public void setCommand(final String val) {
233- super.throwIfConfigured();
233+ throwIfConfigured();
234234
235235 this.command = val;
236236 }
@@ -274,7 +274,7 @@
274274 * @param val Locale
275275 */
276276 public void setLocale(final boolean val) {
277- super.throwIfConfigured();
277+ throwIfConfigured();
278278
279279 this.locale = val;
280280 }
@@ -290,7 +290,7 @@
290290 * @param size MaxFileSize
291291 */
292292 public void setMaxFileSize(final String size) {
293- super.throwIfConfigured();
293+ throwIfConfigured();
294294
295295 this.maxFileSize = size;
296296 }
@@ -306,7 +306,7 @@
306306 * @param size MemFileSize
307307 */
308308 public void setMemFileSize(final String size) {
309- super.throwIfConfigured();
309+ throwIfConfigured();
310310
311311 this.memFileSize = size;
312312 }
@@ -322,7 +322,7 @@
322322 * @param multipart MultipartClass
323323 */
324324 public void setMultipartClass(final String multipart) {
325- super.throwIfConfigured();
325+ throwIfConfigured();
326326
327327 this.multipartClass = multipart;
328328 }
@@ -338,7 +338,7 @@
338338 * @param val Nocache
339339 */
340340 public void setNocache(final boolean val) {
341- super.throwIfConfigured();
341+ throwIfConfigured();
342342
343343 this.nocache = val;
344344 }
@@ -368,7 +368,7 @@
368368 * @param processor ProcessClass
369369 */
370370 public void setProcessorClass(final String processor) {
371- super.throwIfConfigured();
371+ throwIfConfigured();
372372
373373 this.processorClass = processor;
374374 }
@@ -384,7 +384,7 @@
384384 * @param dir TempDir
385385 */
386386 public void setTempDir(final String dir) {
387- super.throwIfConfigured();
387+ throwIfConfigured();
388388
389389 this.tempDir = dir;
390390 }
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ExceptionConfig.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ExceptionConfig.java (revision 2615)
@@ -97,7 +97,7 @@
9797 * @param val Bundle
9898 */
9999 public void setBundle(final String val) {
100- super.throwIfConfigured();
100+ throwIfConfigured();
101101
102102 this.bundle = val;
103103 }
@@ -113,7 +113,7 @@
113113 * @param val Extends
114114 */
115115 public void setExtends(final String val) {
116- super.throwIfConfigured();
116+ throwIfConfigured();
117117
118118 this.inherit = val;
119119 }
@@ -136,7 +136,7 @@
136136 * @param val Handler
137137 */
138138 public void setHandler(final String val) {
139- super.throwIfConfigured();
139+ throwIfConfigured();
140140
141141 this.handler = val;
142142 }
@@ -152,7 +152,7 @@
152152 * @param val Key
153153 */
154154 public void setKey(final String val) {
155- super.throwIfConfigured();
155+ throwIfConfigured();
156156
157157 this.key = val;
158158 }
@@ -168,7 +168,7 @@
168168 * @param val Path
169169 */
170170 public void setPath(final String val) {
171- super.throwIfConfigured();
171+ throwIfConfigured();
172172
173173 this.path = val;
174174 }
@@ -184,7 +184,7 @@
184184 * @param val Scope
185185 */
186186 public void setScope(final String val) {
187- super.throwIfConfigured();
187+ throwIfConfigured();
188188
189189 this.scope = val;
190190 }
@@ -200,7 +200,7 @@
200200 * @param val Type
201201 */
202202 public void setType(final String val) {
203- super.throwIfConfigured();
203+ throwIfConfigured();
204204
205205 this.type = val;
206206 }
@@ -319,7 +319,7 @@
319319 */
320320 public void inheritFrom(final ExceptionConfig config) {
321321
322- super.throwIfConfigured();
322+ throwIfConfigured();
323323
324324 // Inherit values that have not been overridden
325325 if (getBundle() == null) {
@@ -362,7 +362,7 @@
362362 public void processExtends(final Map<String, ExceptionConfig> moduleConfig,
363363 final Map<String, ExceptionConfig> actionConfig) {
364364
365- super.throwIfConfigured();
365+ throwIfConfigured();
366366
367367 String ancestorType = getExtends();
368368
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/FormBeanConfig.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/FormBeanConfig.java (revision 2615)
@@ -382,7 +382,7 @@
382382 */
383383 public void processExtends(final Map<String, FormBeanConfig> moduleConfig) {
384384
385- super.throwIfConfigured();
385+ throwIfConfigured();
386386
387387 String ancestor = getExtends();
388388
@@ -420,7 +420,7 @@
420420 * @param config FormPropertyConfig instance to be removed
421421 */
422422 public void removeFormPropertyConfig(final FormPropertyConfig config) {
423- super.throwIfConfigured();
423+ throwIfConfigured();
424424
425425 this.formProperties.remove(config.getName());
426426 }
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ForwardConfig.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/ForwardConfig.java (revision 2615)
@@ -119,7 +119,7 @@
119119 * Construct a new instance with default values.
120120 */
121121 public ForwardConfig() {
122- super();
122+ this(null, null, false, null);
123123 }
124124
125125 /**
@@ -178,7 +178,7 @@
178178 * @param val String
179179 */
180180 public void setExtends(final String val) {
181- super.throwIfConfigured();
181+ throwIfConfigured();
182182
183183 this.inherit = val;
184184 }
@@ -201,7 +201,7 @@
201201 * @param val String
202202 */
203203 public void setName(final String val) {
204- super.throwIfConfigured();
204+ throwIfConfigured();
205205
206206 this.name = val;
207207 }
@@ -217,7 +217,7 @@
217217 * @param val String
218218 */
219219 public void setPath(final String val) {
220- super.throwIfConfigured();
220+ throwIfConfigured();
221221
222222 this.path = val;
223223 }
@@ -233,7 +233,7 @@
233233 * @param val String
234234 */
235235 public void setModule(final String val) {
236- super.throwIfConfigured();
236+ throwIfConfigured();
237237
238238 this.module = val;
239239 }
@@ -249,7 +249,7 @@
249249 * @param val boolean
250250 */
251251 public void setRedirect(final boolean val) {
252- super.throwIfConfigured();
252+ throwIfConfigured();
253253
254254 this.redirect = val;
255255 }
@@ -265,7 +265,7 @@
265265 * @param val String
266266 */
267267 public void setCommand(final String val) {
268- super.throwIfConfigured();
268+ throwIfConfigured();
269269
270270 this.command = val;
271271 }
@@ -281,7 +281,7 @@
281281 * @param val String
282282 */
283283 public void setCatalog(final String val) {
284- super.throwIfConfigured();
284+ throwIfConfigured();
285285
286286 this.catalog = val;
287287 }
@@ -399,7 +399,7 @@
399399 */
400400 public void inheritFrom(final ForwardConfig config) {
401401
402- super.throwIfConfigured();
402+ throwIfConfigured();
403403
404404 // Inherit values that have not been overridden
405405 if (getCatalog() == null) {
@@ -441,7 +441,7 @@
441441 public void processExtends(final Map<String, ForwardConfig> moduleConfig,
442442 final Map<String, ForwardConfig> actionConfig) {
443443
444- super.throwIfConfigured();
444+ throwIfConfigured();
445445
446446 String ancestorName = getExtends();
447447
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/config/MessageResourcesConfig.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/config/MessageResourcesConfig.java (revision 2615)
@@ -80,7 +80,7 @@
8080 * @param val String
8181 */
8282 public void setFactory(final String val) {
83- super.throwIfConfigured();
83+ throwIfConfigured();
8484
8585 this.factory = val;
8686 }
@@ -96,7 +96,7 @@
9696 * @param val String
9797 */
9898 public void setKey(final String val) {
99- super.throwIfConfigured();
99+ throwIfConfigured();
100100
101101 this.key = val;
102102 }
@@ -112,7 +112,7 @@
112112 * @param val boolean
113113 */
114114 public void setNull(final boolean val) {
115- super.throwIfConfigured();
115+ throwIfConfigured();
116116
117117 this.nullValue = val;
118118 }
@@ -148,7 +148,7 @@
148148 * @param val String
149149 */
150150 public void setParameter(final String val) {
151- super.throwIfConfigured();
151+ throwIfConfigured();
152152
153153 this.parameter = val;
154154 }
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/util/PropertyMessageDefaultLocaleResources.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/util/PropertyMessageDefaultLocaleResources.java (revision 2615)
@@ -82,7 +82,7 @@
8282 String message = findMessage(locale, key, originalKey);
8383 // PropertyResourcesBundle - searches through the hierarchy
8484 // for the default Locale (e.g. first en_US then en)
85- if (message == null && !super.getDefaultLocale().equals(locale)) {
85+ if (message == null && !getDefaultLocale().equals(locale)) {
8686 message = findMessage(getDefaultLocale(), key, originalKey);
8787 }
8888
@@ -96,7 +96,7 @@
9696 }
9797
9898 // Return an appropriate error indication
99- if (super.getReturnNull()) {
99+ if (getReturnNull()) {
100100 return null;
101101 }
102102
--- trunk/apache/struts1-core/src/main/java/org/apache/struts/util/PropertyMessageResources.java (revision 2614)
+++ trunk/apache/struts1-core/src/main/java/org/apache/struts/util/PropertyMessageResources.java (revision 2615)
@@ -219,7 +219,7 @@
219219 }
220220
221221 // Return an appropriate error indication
222- if (super.getReturnNull()) {
222+ if (getReturnNull()) {
223223 return null;
224224 }
225225
@@ -252,7 +252,7 @@
252252 this.locales.put(localeKey, localeKey);
253253
254254 // Set up to load the property resource for this locale key, if we can
255- String name = super.getConfig().replace('.', '/');
255+ String name = getConfig().replace('.', '/');
256256 if (!localeKey.isEmpty()) {
257257 name = name + "_" + localeKey;
258258 }
@@ -311,7 +311,7 @@
311311 protected String findMessage(final Locale locale, final String key, final String originalKey) {
312312
313313 // Initialize variables we will require
314- String localeKey = super.localeKey(locale);
314+ String localeKey = localeKey(locale);
315315
316316 String message = findMessage(localeKey, key, originalKey);
317317
@@ -349,7 +349,7 @@
349349 loadLocale(localeKey);
350350
351351 // Check if we have this key for the current locale key
352- String messageKey = super.messageKey(localeKey, key);
352+ String messageKey = messageKey(localeKey, key);
353353
354354 String message = this.messages.get(messageKey);
355355 if (message != null) {