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=32162>.
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=32162

Call to toString() in should be replaced with getConvertUtils().convert(value)

           Summary: Call to toString() in should be replaced with
                    getConvertUtils().convert(value)
           Product: Commons
           Version: Nightly Builds
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Bean Utilities
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


In BeanUtilsBean#getArrayProperty(Object, String) line 577 (in the CVS version),
we should have:

  results[0] = getConvertUtils().convert(value);

instead of:

  results[0] = value.toString();

Rationale: the struts html taglibs doesn't work correctly with my objects with
the  correct Converters registered.

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

Reply via email to