You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by bu...@apache.org on 2003/02/21 08:20:31 UTC

DO NOT REPLY [Bug 17273] New: - Recycled instance of form bean returned even if invalid type

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17273

Recycled instance of form bean returned even if invalid type

           Summary: Recycled instance of form bean returned even if invalid
                    type
           Product: Struts
           Version: Nightly Build
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Utilities
        AssignedTo: struts-dev@jakarta.apache.org
        ReportedBy: dyamasaki@lightsurf.com


Within RequestUtils.createActionForm():
...
if (configClass.isAssignableFrom(instance.getClass())) {
    if (log.isDebugEnabled()) {
        log.debug(
            " Recycling existing ActionForm instance "
                + "of class '"
                + instance.getClass().getName()
                + "'");
        log.trace(" --> " action/+ instance);
    }
    return (instance);
}
return (instance);    // <-- This line should be removed, right?
...

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-dev-help@jakarta.apache.org