public void close()

in src/main/java/com/hadoop/compression/lzo/LzopOutputStream.java [111:121]


  public void close() throws IOException {
    if (!closed) {
      finish();
      out.write(new byte[]{ 0, 0, 0, 0 });
      out.close();
      if (indexOut != null) {
        indexOut.close();
      }
      closed = true;
    }
  }