mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
clean up sqlnotebookmanager (#14793)
This commit is contained in:
@@ -4,14 +4,13 @@
|
|||||||
*--------------------------------------------------------------------------------------------*/
|
*--------------------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
import { nb } from 'azdata';
|
import { nb } from 'azdata';
|
||||||
import * as vscode from 'vscode';
|
|
||||||
|
|
||||||
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
|
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
|
||||||
import { SQL_NOTEBOOK_PROVIDER } from 'sql/workbench/services/notebook/browser/notebookService';
|
import { SQL_NOTEBOOK_PROVIDER } from 'sql/workbench/services/notebook/browser/notebookService';
|
||||||
import { LocalContentManager } from 'sql/workbench/services/notebook/common/localContentManager';
|
import { LocalContentManager } from 'sql/workbench/services/notebook/common/localContentManager';
|
||||||
import { SqlSessionManager } from 'sql/workbench/services/notebook/browser/sql/sqlSessionManager';
|
import { SqlSessionManager } from 'sql/workbench/services/notebook/browser/sql/sqlSessionManager';
|
||||||
|
|
||||||
export class SqlNotebookManager implements nb.NotebookProvider {
|
export class SqlNotebookManager implements nb.NotebookManager {
|
||||||
private _contentManager: nb.ContentManager;
|
private _contentManager: nb.ContentManager;
|
||||||
private _sessionManager: nb.SessionManager;
|
private _sessionManager: nb.SessionManager;
|
||||||
|
|
||||||
@@ -36,14 +35,6 @@ export class SqlNotebookManager implements nb.NotebookProvider {
|
|||||||
return this._sessionManager;
|
return this._sessionManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
getNotebookManager(notebookUri: vscode.Uri): Thenable<nb.NotebookManager> {
|
|
||||||
throw new Error('Method not implemented.');
|
|
||||||
}
|
|
||||||
|
|
||||||
handleNotebookClosed(notebookUri: vscode.Uri): void {
|
|
||||||
throw new Error('Method not implemented.');
|
|
||||||
}
|
|
||||||
|
|
||||||
public get standardKernels(): nb.IStandardKernel[] {
|
public get standardKernels(): nb.IStandardKernel[] {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user