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