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
377 | if (
378 | source.substring(startIndex, endIndex).compareTo(
379 | getImaginaryCharacter()) != 0) {
380 | // set index back to initial, error index should be the start index381 | // character examined.382 | pos.setIndex(initialIndex);
383 | pos.setErrorIndex(startIndex);
384 | returnnull;
385 | }
The exception is thrown from substring(int, int) at line 378, but in JCrashPack it was logged as 377.
For example:
In
MATH-101b
:The exception is thrown from
substring(int, int)
at line 378, but in JCrashPack it was logged as 377.In
LANG-44b
:The exception is actually thrown from
charAt(int)
at line 195, but in JCrashPack it was logged as 193The text was updated successfully, but these errors were encountered: