pass in notification service (#14499)

* pass in notification service

* make the parameter required
This commit is contained in:
Alan Ren
2021-03-02 13:39:31 -08:00
committed by GitHub
parent 3c38e0cc8b
commit 18bdb0f37d
2 changed files with 5 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ export class ResolvableTreeComponentItem extends ResolvableTreeItem implements I
export class TreeViewDataProvider extends vsTreeView.TreeViewDataProvider implements IModelViewTreeViewDataProvider {
constructor(handle: number, treeViewId: string,
context: IExtHostContext,
notificationService?: INotificationService
notificationService: INotificationService
) {
super(`${handle}-${treeViewId}`, context.getProxy(SqlExtHostContext.ExtHostModelViewTreeViews), notificationService);
}