()
| 582 | } |
| 583 | |
| 584 | func (diffView *DiffView) currentDiffProcessor() (diffProcessor, diffProcessorType) { |
| 585 | diffType := diffView.currentDiffProcessorType() |
| 586 | return diffProcessors[diffType], diffType |
| 587 | } |
| 588 | |
| 589 | func (diffView *DiffView) generateDiffLinesForCommit(commit *Commit) (lines []*diffLineData, err error) { |
| 590 | author := commit.commit.Author() |
no test coverage detected