Rename Stash Explorer

This commit is contained in:
rebornix
2017-06-13 19:22:43 -07:00
committed by Eric Amodio
parent 1b4800571d
commit 0e4664bab1
3 changed files with 5 additions and 5 deletions

View File

@@ -1,14 +1,14 @@
'use strict';
import { TextEditor, TextEditorEdit, Uri, window } from 'vscode';
import { Commands, EditorCommand, getCommandUri } from './common';
import { GitStashExplorer } from '../views/gitStashExplorer';
import { StashExplorer } from '../views/stashExplorer';
import { GitService, GitUri } from '../gitService';
import { Messages } from '../messages';
import { Logger } from '../logger';
export class ShowStashListCommand extends EditorCommand {
constructor(private git: GitService, private explorer: GitStashExplorer) {
constructor(private git: GitService, private explorer: StashExplorer) {
super(Commands.ShowStashList);
}