Refactors command & quickpick imports

This commit is contained in:
Eric Amodio
2017-03-01 01:13:53 -05:00
parent 226e98dd04
commit dfd0f8c365
19 changed files with 135 additions and 120 deletions

View File

@@ -1,10 +1,10 @@
'use strict';
import { commands, TextEditor, TextEditorEdit, Uri, window } from 'vscode';
import { Commands, EditorCommand } from '../commands';
import { Commands, EditorCommand } from './commands';
import GitProvider, { GitCommit, GitUri } from '../gitProvider';
import { Logger } from '../logger';
export default class DiffLineWithWorkingCommand extends EditorCommand {
export class DiffLineWithWorkingCommand extends EditorCommand {
constructor(private git: GitProvider) {
super(Commands.DiffLineWithWorking);