| 54 | } |
| 55 | |
| 56 | void SingleEndProcessor::initConfig(ThreadConfig* config) { |
| 57 | if(mOptions->out.empty()) |
| 58 | return; |
| 59 | |
| 60 | if(mOptions->split.enabled) { |
| 61 | config->initWriterForSplit(); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | bool SingleEndProcessor::process(){ |
| 66 | if(!mOptions->split.enabled) |
nothing calls this directly
no test coverage detected