in src/main/java/com/googlesource/gerrit/plugins/web/SSIPageInputStream.java [39:54]
public int read() throws IOException {
int character;
if (currentIs.isNewLine() && currentIs.startsWith(INCLUDE_VIRTUAL_PREFIX)) {
processInclude();
character = read();
} else {
character = currentIs.read();
}
if (character < 0 && !fileInputStreamStack.isEmpty()) {
pop();
return read();
} else {
return character;
}
}