Support right clicking the database to start the importer task (#2233)

This commit is contained in:
Amir Ali Omidi
2018-08-15 14:11:54 -07:00
committed by GitHub
parent 44e9a97f09
commit 2c8e93cc96
5 changed files with 33 additions and 13 deletions

View File

@@ -11,7 +11,7 @@ import * as vscode from 'vscode';
export default abstract class ControllerBase implements vscode.Disposable {
protected _context: vscode.ExtensionContext;
public constructor(context: vscode.ExtensionContext) {
protected constructor(context: vscode.ExtensionContext) {
this._context = context;
}