DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=28104>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=28104

Action mapping with wildcard should be search in the order of their declaration





------- Additional Comments From [EMAIL PROTECTED]  2004-04-10 07:54 -------
Since in   public void freeze() {

        this.configured = true;

        ActionConfig[] aconfigs = findActionConfigs();

This isn't needed:

this.actionConfigList = new ArrayList();
actionConfigList.add(config);

And a !configured check should be added here.
  public ActionConfig[] findActionConfigs() {

        if (!configured) {
            throw new IllegalStateException("Configuration is not loaded");
        }

        ActionConfig results[] = new ActionConfig[actionConfigList.size()];
        return ((ActionConfig[]) actionConfigList.toArray(results));

    }

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to