Searched refs:closed (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Email/emailcommon/src/org/apache/commons/io/output/
H A DDeferredFileOutputStream.java31 * closed before the threshold is reached, the data will not be written to
90 private boolean closed = false; field in class:DeferredFileOutputStream
227 * Closes underlying output stream, and mark this as closed
234 closed = true;
240 * after it has been closed.
243 * @exception IOException if this stream is not yet closed or an error occurs.
247 // we may only need to check if this is closed if we are working with a file
250 if (!closed)
252 throw new IOException("Stream not closed");

Completed in 787 milliseconds