[ http://issues.apache.org/jira/browse/HARMONY-747?page=comments#action_12436194 ]
Paulex Yang commented on HARMONY-747:
-------------------------------------
Leo, second patch applied at revision r448138, please verify, thanks a lot.
> java.lang.Doulbe.parseDouble(String) does not support Hex number
> ----------------------------------------------------------------
>
> Key: HARMONY-747
> URL: http://issues.apache.org/jira/browse/HARMONY-747
> Project: Harmony
> Issue Type: Bug
> Components: Classlib
> Reporter: Richard Liang
> Assigned To: Paulex Yang
> Attachments: lunipatch.txt, patch.diff, patch_partII.diff
>
>
> Hello,
> When implementing java.util.Scanner, I find that java.lang.Doulbe.parseDouble(String)
does not support Hex number. Could anyone have a look at this issue? Thanks a lot.
> The following test passes on RI, but fails on Harmony.
> public void test_ParseDouble() {
> String hexString = Double.toHexString(123);
> assertEquals("0x1.ecp6", hexString);
>
> double d = Double.parseDouble(hexString);
> assertEquals(123.0, d);
> }
> Best regards,
> Richard
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|