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

@@ -2,12 +2,12 @@
import { commands, Position, Range, TextEditor, TextEditorEdit, Uri, window } from 'vscode';
import { Commands, EditorCommand } from './commands';
import { BuiltInCommands } from '../constants';
import { GitProvider, GitUri } from '../gitProvider';
import { GitService, GitUri } from '../gitService';
import { Logger } from '../logger';
export class ShowFileHistoryCommand extends EditorCommand {
constructor(private git: GitProvider) {
constructor(private git: GitService) {
super(Commands.ShowFileHistory);
}