| 35 | } |
| 36 | |
| 37 | void SingleEndProcessor::initOutput() { |
| 38 | if(!mOptions->failedOut.empty()) |
| 39 | mFailedWriter = new WriterThread(mOptions, mOptions->failedOut); |
| 40 | if(mOptions->out.empty() && !mOptions->outputToSTDOUT) |
| 41 | return; |
| 42 | mLeftWriter = new WriterThread(mOptions, mOptions->out, mOptions->outputToSTDOUT); |
| 43 | } |
| 44 | |
| 45 | void SingleEndProcessor::closeOutput() { |
| 46 | if(mLeftWriter) { |
nothing calls this directly
no outgoing calls
no test coverage detected