mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-23 17:26:14 -05:00
Renames GitProvider to GitService
This commit is contained in:
@@ -2,13 +2,13 @@
|
||||
import { Iterables } from '../system';
|
||||
import { TextEditor, Uri, window } from 'vscode';
|
||||
import { ActiveEditorCommand, Commands } from './commands';
|
||||
import { GitProvider, GitUri } from '../gitProvider';
|
||||
import { GitService, GitUri } from '../gitService';
|
||||
import { Logger } from '../logger';
|
||||
import { copy } from 'copy-paste';
|
||||
|
||||
export class CopyMessageToClipboardCommand extends ActiveEditorCommand {
|
||||
|
||||
constructor(private git: GitProvider, private repoPath: string) {
|
||||
constructor(private git: GitService, private repoPath: string) {
|
||||
super(Commands.CopyMessageToClipboard);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user