| 54 | } |
| 55 | |
| 56 | void SingleEndProcessor::closeOutput() { |
| 57 | if(mLeftWriter) { |
| 58 | delete mLeftWriter; |
| 59 | mLeftWriter = NULL; |
| 60 | } |
| 61 | if(mFailedWriter) { |
| 62 | delete mFailedWriter; |
| 63 | mFailedWriter = NULL; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | void SingleEndProcessor::initConfig(ThreadConfig* config) { |
| 68 | if(mOptions->out1.empty()) |
nothing calls this directly
no outgoing calls
no test coverage detected