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
Since JsonBuffer is reading character-by-character anyway, there is no need to use String.codePointAt. And doing so is incorrect
unless there is a corresponding call to Character.charCount instead of just incrementing the position by a single character. The fix
is simply to use use String.charAt instead of String.codePointAt.
JAVA-1793
0 commit comments