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

@@ -3,13 +3,13 @@ import { TextEditor, Uri, window } from 'vscode';
import { ActiveEditorTracker } from '../activeEditorTracker';
import { ActiveEditorCommand, Commands } from './commands';
import { TextEditorComparer, UriComparer } from '../comparers';
import { GitProvider } from '../gitProvider';
import { GitService } from '../gitService';
import { Logger } from '../logger';
import * as path from 'path';
export class CloseUnchangedFilesCommand extends ActiveEditorCommand {
constructor(private git: GitProvider, private repoPath: string) {
constructor(private git: GitService, private repoPath: string) {
super(Commands.CloseUnchangedFiles);
}