Merge "Merge branch 'stable-5.5'"

This commit is contained in:
Matthias Sohn 2019-10-04 15:42:20 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit c9a8d3d040
1 changed files with 2 additions and 4 deletions

View File

@ -1494,12 +1494,10 @@ private static class StringReader {
}
int read() {
try {
return buf[pos++];
} catch (ArrayIndexOutOfBoundsException e) {
pos = buf.length;
if (pos >= buf.length) {
return -1;
}
return buf[pos++];
}
void reset() {