Browse Source

Merge "Merge branch 'stable-5.5'"

next
Matthias Sohn 5 years ago committed by Gerrit Code Review @ Eclipse.org
parent
commit
c9a8d3d040
  1. 6
      org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java

6
org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java

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

Loading…
Cancel
Save