You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2008/07/02 18:19:45 UTC

[jira] Closed: (HARMONY-489) new Double("1E+-20") should throw exception but doesn't

     [ https://issues.apache.org/jira/browse/HARMONY-489?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess closed HARMONY-489.
--------------------------------


> new Double("1E+-20") should throw exception but doesn't
> -------------------------------------------------------
>
>                 Key: HARMONY-489
>                 URL: https://issues.apache.org/jira/browse/HARMONY-489
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Mark Hindess
>            Assignee: Mark Hindess
>            Priority: Minor
>         Attachments: double.parse.problem.diff
>
>
> The statement "new Double("1E+-20");" should throw a NumberFormatException, but the parser contains a special case which causes it to skip the '+' and then accept the valid string '-20'.  Unfortunately removing the special case wouldn't help because '1E+20' is valid but '+20' fails parseInt.  Therefore I think another check is required to prevent the '-' being accepted.
> I also note that the RI throws NumberFormatException containing the original string where as Harmony would propogate the exception thrown by parseInt which would contain the exponent substring only.  I'll also correct this in my patch.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.