Renames onDidBlameabilityChange for consistency

This commit is contained in:
Eric Amodio
2017-06-29 01:41:10 -04:00
parent 0a9559f5a5
commit 3d32d86998
3 changed files with 6 additions and 6 deletions

View File

@@ -108,7 +108,7 @@ export class CurrentLineController extends Disposable {
subscriptions.push(window.onDidChangeActiveTextEditor(this._onActiveTextEditorChanged, this));
subscriptions.push(window.onDidChangeTextEditorSelection(this._onTextEditorSelectionChanged, this));
subscriptions.push(this.gitContextTracker.onDidBlameabilityChange(this._onBlameabilityChanged, this));
subscriptions.push(this.gitContextTracker.onDidChangeBlameability(this._onBlameabilityChanged, this));
this._trackCurrentLineDisposable = Disposable.from(...subscriptions);
}