| 43 | } |
| 44 | |
| 45 | void SingleEndProcessor::closeOutput() { |
| 46 | if(mLeftWriter) { |
| 47 | delete mLeftWriter; |
| 48 | mLeftWriter = NULL; |
| 49 | } |
| 50 | if(mFailedWriter) { |
| 51 | delete mFailedWriter; |
| 52 | mFailedWriter = NULL; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | void SingleEndProcessor::initConfig(ThreadConfig* config) { |
| 57 | if(mOptions->out.empty()) |
nothing calls this directly
no outgoing calls
no test coverage detected