close method

void close()

Implementation

void close() {
  closed = true;
  if (/*afileReader != null && */ afileReader.isOpen) {
    afileReader.close();
  }
  // content = null;
  // afileReader = null;
  // buf = null;
}