605606607608609610611612
WrapOutput( final File file, final boolean debug ) { mDebug = debug; mWrapped = OutputIgnore.INSTANCE; mFile = file; mFileOutput = new FileOutput( file, mAppend); checkStatus(); }
663664665666667668669670671
// OK, now mFileOutput is not used mFileOutput.close(); // the new one is lazy-opened... mFileOutput = new FileOutput( mFile ); checkStatus(); }