https://issues.apache.org/bugzilla/show_bug.cgi?id=43940

--- Comment #36 from Julien Aymé <julien.a...@gmail.com> ---
The bug is trivial:
"if (source >= 10e-3 && source < 1e7) {" is wrong !
"if (source >= 1e-3 && source < 1e7) {" is right.

My mistake when reading 10 exp -3 in Double.toString javadoc and writing 10e-3
instead of 1e-3.

Patch will follow.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to