Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Lourens <roblourens@gmail.com>2022-06-24 19:22:54 +0300
committerGitHub <noreply@github.com>2022-06-24 19:22:54 +0300
commitf81c4784b6febce3931eb24a17737395026f83e7 (patch)
tree3e6cd1e9af7f088470ef791e3db67ead7c826315 /src/vs/workbench/contrib/notebook/common
parent2ed7a47719dcf7f7c6f87771cbdb9fad0b7bacf1 (diff)
Delete "set kernel as default" button which did not really work (#153053)
For #151158
Diffstat (limited to 'src/vs/workbench/contrib/notebook/common')
-rw-r--r--src/vs/workbench/contrib/notebook/common/notebookKernelService.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/vs/workbench/contrib/notebook/common/notebookKernelService.ts b/src/vs/workbench/contrib/notebook/common/notebookKernelService.ts
index 2ab657faf5b..756377bdd86 100644
--- a/src/vs/workbench/contrib/notebook/common/notebookKernelService.ts
+++ b/src/vs/workbench/contrib/notebook/common/notebookKernelService.ts
@@ -103,13 +103,6 @@ export interface INotebookKernelService {
preselectKernelForNotebook(kernel: INotebookKernel, notebook: INotebookTextModelLike): void;
/**
- * Bind a notebook type to a kernel.
- * @param viewType
- * @param kernel
- */
- selectKernelForNotebookType(kernel: INotebookKernel, viewType: string): void;
-
- /**
* Set a perference of a kernel for a certain notebook. Higher values win, `undefined` removes the preference
*/
updateKernelNotebookAffinity(kernel: INotebookKernel, notebook: URI, preference: number | undefined): void;