scm: hide input box model from extension host

This commit is contained in:
Joao Moreno
2017-02-03 17:20:26 +01:00
parent d7382f0d55
commit 3eddf71678
11 changed files with 107 additions and 50 deletions

View File

@@ -43,7 +43,7 @@ async function init(disposables: Disposable[]): Promise<void> {
git.onOutput(str => outputChannel.append(str), null, disposables);
const commitHandler = new CommitController(model);
const commandCenter = new CommandCenter(model, commitHandler, outputChannel);
const commandCenter = new CommandCenter(model, outputChannel);
const provider = new GitSCMProvider(model, commandCenter);
const contentProvider = new GitContentProvider(git, rootPath, onGitChange);
const checkoutStatusBar = new CheckoutStatusBar(model);