Renames GitProvider to GitService

This commit is contained in:
Eric Amodio
2017-03-17 14:12:09 -04:00
parent f6bde72baf
commit 332b2c3b91
35 changed files with 91 additions and 91 deletions

View File

@@ -1,11 +1,11 @@
'use strict';
import { TextEditor, TextEditorEdit } from 'vscode';
import { Commands, EditorCommand } from './commands';
import { GitProvider } from '../gitProvider';
import { GitService } from '../gitService';
export class ToggleCodeLensCommand extends EditorCommand {
constructor(private git: GitProvider) {
constructor(private git: GitService) {
super(Commands.ToggleCodeLens);
}