Java 5 enhancement: java.math.MathContext not implemented
---------------------------------------------------------
Key: HARMONY-371
URL: http://issues.apache.org/jira/browse/HARMONY-371
Project: Harmony
Type: Bug
Components: Classlib
Reporter: Paulex Yang
java 5 adds new class java.math.MathContext, which is not implemented in Harmony.
testcase:
public void test_mathContext()
{
double d = 1234567.89123;
BigDecimal bigDecimal = new BigDecimal(d,new MathContext(4));
}
RI pass
Harmony fail
--
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
|