Remove profiler ApiWrapper (#11441)

This commit is contained in:
Charles Gagnon
2020-07-20 15:42:17 -07:00
committed by GitHub
parent 8828758b2f
commit d99201002d
3 changed files with 2 additions and 62 deletions

View File

@@ -5,19 +5,16 @@
import * as vscode from 'vscode';
import * as azdata from 'azdata';
import { ApiWrapper } from './apiWrapper';
import { CreateSessionDialog } from './dialogs/profilerCreateSessionDialog';
/**
* The main controller class that initializes the extension
*/
export class MainController {
protected _apiWrapper: ApiWrapper;
protected _context: vscode.ExtensionContext;
// PUBLIC METHODS
public constructor(context: vscode.ExtensionContext, apiWrapper?: ApiWrapper) {
this._apiWrapper = apiWrapper || new ApiWrapper();
public constructor(context: vscode.ExtensionContext) {
this._context = context;
}