You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ParseDouble.parseDouble(char[], int, int) returns wrong result for number with E-notation.
Example value 2.52734104E8 is parsed as 252734104.00000006 or 2.5273410400000006E8 (there's extra .00000006).
The bug makes the value returned by method NumberNode#value(), and ScalarNode#doubleValue() to be incorrect.
The text was updated successfully, but these errors were encountered:
jparse version: 1.2.3
ParseDouble.parseDouble(char[], int, int)
returns wrong result for number with E-notation.Example value
2.52734104E8
is parsed as252734104.00000006
or2.5273410400000006E8
(there's extra .00000006).The bug makes the value returned by method NumberNode#value(), and ScalarNode#doubleValue() to be incorrect.
The text was updated successfully, but these errors were encountered: