private void push()

in src/main/java/com/googlesource/gerrit/plugins/web/SSIPageInputStream.java [60:74]


  private void push(String includeFileName) throws IOException {
    fileInputStreamStack.push(currentIs);
    Path inputFile = getFile(includeFileName);
    if (!Files.exists(inputFile)) {
      throw new IOException(
          "Cannot find file '"
              + includeFileName
              + "' included in "
              + currentIs.getFileName()
              + ":"
              + currentIs.getLineNr());
    }
    currentIs = new LookAheadFileInputStream(inputFile);
    in = currentIs;
  }