/**
         * Closes the underlying OutputStream.
         * @throws IOException on error
         */
        public override void close() //throws IOException
        {
            if (!finished)
            {
                finish();
            }

            if (!closed)
            {
                buffer.close();
                outJ.close();
                closed = true;
            }
        }
Esempio n. 2
0
 /**
  * Closes this stream. Calls the TarBuffer's close() method.
  * @throws IOException on error
  */
 public override void close() //throws IOException
 {
     buffer.close();
 }