Justin Mclean created FLEX-33516:
------------------------------------

             Summary: DateFormatter.parseDate assumes months comes before days 
in all locales
                 Key: FLEX-33516
                 URL: https://issues.apache.org/jira/browse/FLEX-33516
             Project: Apache Flex
          Issue Type: Bug
            Reporter: Justin Mclean
            Priority: Minor


Offending code:

if (mon < 0)
    mon = (num - 1);
else if (day < 0)
    day = num;
else if (sec < 0)
    sec = num;
else if (milli < 0)
    milli = num;
else
    break; //error

marked with FIXME in 4.10.0 develop branch

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to