Message:

  A new issue has been created in JIRA.

---------------------------------------------------------------------
View the issue:

  http://jira.opensymphony.com/secure/ViewIssue.jspa?key=XW-49


Here is an overview of the issue:
---------------------------------------------------------------------
        Key: XW-49
    Summary: XWorkConverter doesn't handle String[] properly
       Type: Bug

     Status: Assigned
   Priority: Major

    Project: XWork
 Components: 
             Interceptors
   Versions:
             1.0

   Assignee: Patrick Lightbody
   Reporter: Cameron Braid

    Created: Thu, 29 May 2003 7:30 AM
    Updated: Thu, 29 May 2003 7:30 AM

Description:
In XWorkConverter then

Object doConvert(Map context, Object value, Class toType)

method treats a String[] specially by recuring into the converter process for the 
first value of the array if the conversion hasn't yet succeeded.  

Line 152 is 

            result = super.convertValue(context, value, toType);

where as it needs to be 

            result = convertValue(context, value, toType);

(the removal of super.) to allow this converter to try and convert the value, before 
delegating it to the superclass.




---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.opensymphony.com/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



-------------------------------------------------------
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Opensymphony-webwork mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork

Reply via email to