-
-
Notifications
You must be signed in to change notification settings - Fork 797
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ArrayIndexOutOfBoundsException: 200 on numbers with more than 200 digits. #157
Comments
Thanks, sounds like some bounds check is off. |
Actually, sort of; when calculating max bound, was forgetting to account for one character already appended. So was OBO problem. Also: was a regression between 2.3->2.4 (due to low-level optimizations in squeezing out some more speed); meaning that 2.3.x was NOT affected, just 2.4. |
Thanks! |
Indeed! But I have realized that cost of trying out tons of low-level optimization with 2.4 was non-trivial. I over-estimated coverage of test suite; there have been almost half a dozen cases similar cases. Anyway, here's hoping that we are done with finding obscure regressions. :) |
On a simple data structure such as
Where the field
values
is aMap<String, ?>
I'll get a
ArrayIndexOutOfBoundsException: 200
when the number has more than 200 digits.Stacktrace:
The text was updated successfully, but these errors were encountered: