| 65 | } |
| 66 | |
| 67 | void SingleEndProcessor::initConfig(ThreadConfig* config) { |
| 68 | if(mOptions->out1.empty()) |
| 69 | return; |
| 70 | |
| 71 | if(mOptions->split.enabled) { |
| 72 | config->initWriterForSplit(); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | bool SingleEndProcessor::process(){ |
| 77 | if(!mOptions->split.enabled) |
nothing calls this directly
no test coverage detected