Skip to content

Commit

Permalink
Merge pull request #68 from pcy190/master
Browse files Browse the repository at this point in the history
Fix ArrayIndexOutOfBoundsException
  • Loading branch information
UrielCh committed Apr 17, 2021
2 parents 00955f7 + 6ecff1c commit 21dad44
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -75,7 +75,7 @@ protected void extractStringTrim(int start, int stop) {
}

protected int indexOf(char c, int pos) {
for (int i = pos; pos < len; i++)
for (int i = pos; i < len; i++)
if (in[i] == (byte) c)
return i;
return -1;
Expand Down

0 comments on commit 21dad44

Please sign in to comment.