java/shims/src/java/org/apache/orc/impl/SnappyDirectDecompressWrapper.java [35:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void decompress(ByteBuffer input, ByteBuffer output) throws IOException {
    if (!isFirstCall) {
      root.reset();
    } else {
      isFirstCall = false;
    }
    root.decompress(input, output);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



java/shims/src/java/org/apache/orc/impl/ZlibDirectDecompressWrapper.java [35:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void decompress(ByteBuffer input, ByteBuffer output) throws IOException {
    if (!isFirstCall) {
      root.reset();
    } else {
      isFirstCall = false;
    }
    root.decompress(input, output);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



