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
This code is bug prone (line 514, method
while( input.charAt(pos) != ' ' ) {
pos--;
}
Under some cases, if there's no space at all, you can easily go below the
range. The while() should be rather:
while( (pos >= 0) && (input.charAt(pos) != ' ' ) )
Original issue reported on code.google.com by [email protected] on 27 Feb 2012 at 11:17
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 27 Feb 2012 at 11:17The text was updated successfully, but these errors were encountered: