@@ -7,7 +7,7 @@ import { Commands } from './commands';
77import { TextEditorComparer } from './comparers' ;
88import { FileAnnotationType , IConfig , LineAnnotationType , StatusBarCommand } from './configuration' ;
99import { DocumentSchemes , ExtensionKey } from './constants' ;
10- import { BlameabilityChangeEvent , CommitFormatter , GitCommit , GitContextTracker , GitService , GitUri , IGitCommitLine } from './gitService' ;
10+ import { BlameabilityChangeEvent , CommitFormatter , GitCommit , GitCommitLine , GitContextTracker , GitService , GitUri } from './gitService' ;
1111
1212const annotationDecoration : TextEditorDecorationType = window . createTextEditorDecorationType ( {
1313 after : {
@@ -181,7 +181,7 @@ export class CurrentLineController extends Disposable {
181181 line = line - this . _uri . offset ;
182182
183183 let commit : GitCommit | undefined = undefined ;
184- let commitLine : IGitCommitLine | undefined = undefined ;
184+ let commitLine : GitCommitLine | undefined = undefined ;
185185 // Since blame information isn't valid when there are unsaved changes -- don't show any status
186186 if ( this . _blameable && line >= 0 ) {
187187 const blameLine = await this . git . getBlameForLine ( this . _uri , line ) ;
@@ -215,7 +215,7 @@ export class CurrentLineController extends Disposable {
215215 editor . setDecorations ( annotationDecoration , [ ] ) ;
216216 }
217217
218- async show ( commit : GitCommit , blameLine : IGitCommitLine , editor : TextEditor , line : number ) {
218+ async show ( commit : GitCommit , blameLine : GitCommitLine , editor : TextEditor , line : number ) {
219219 // I have no idea why I need this protection -- but it happens
220220 if ( editor . document === undefined ) return ;
221221
@@ -247,7 +247,7 @@ export class CurrentLineController extends Disposable {
247247 await this . _updateBlame ( editor . selection . active . line , editor ) ;
248248 }
249249
250- private async _updateAnnotations ( commit : GitCommit , blameLine : IGitCommitLine , editor : TextEditor , line ?: number ) {
250+ private async _updateAnnotations ( commit : GitCommit , blameLine : GitCommitLine , editor : TextEditor , line ?: number ) {
251251 const cfg = this . _config . blame . line ;
252252 if ( ! cfg . enabled ) return ;
253253
0 commit comments