Skip to content

Commit

Permalink
Remove the concat text document api proposal
Browse files Browse the repository at this point in the history
Fixes #146781
  • Loading branch information
mjbvz committed Apr 14, 2022
1 parent ac00898 commit 50ea161
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 871 deletions.
1 change: 0 additions & 1 deletion extensions/vscode-api-tests/package.json
Expand Up @@ -19,7 +19,6 @@
"fsChunks",
"inlineCompletions",
"notebookCellExecutionState",
"notebookConcatTextDocument",
"notebookContentProvider",
"notebookControllerKind",
"notebookDebugOptions",
Expand Down
1 change: 0 additions & 1 deletion extensions/vscode-notebook-tests/package.json
Expand Up @@ -11,7 +11,6 @@
"main": "./out/extension",
"enabledApiProposals": [
"notebookCellExecutionState",
"notebookConcatTextDocument",
"notebookContentProvider",
"notebookControllerKind",
"notebookDebugOptions",
Expand Down
6 changes: 0 additions & 6 deletions src/vs/workbench/api/common/extHost.api.impl.ts
Expand Up @@ -70,7 +70,6 @@ import { IExtHostTunnelService } from 'vs/workbench/api/common/extHostTunnelServ
import { IExtHostApiDeprecationService } from 'vs/workbench/api/common/extHostApiDeprecationService';
import { ExtHostAuthentication } from 'vs/workbench/api/common/extHostAuthentication';
import { ExtHostTimeline } from 'vs/workbench/api/common/extHostTimeline';
import { ExtHostNotebookConcatDocument } from 'vs/workbench/api/common/extHostNotebookConcatDocument';
import { IExtensionStoragePaths } from 'vs/workbench/api/common/extHostStoragePaths';
import { IExtHostConsumerFileSystem } from 'vs/workbench/api/common/extHostFileSystemConsumer';
import { ExtHostWebviewViews } from 'vs/workbench/api/common/extHostWebviewView';
Expand Down Expand Up @@ -1130,11 +1129,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
checkProposedApiEnabled(extension, 'notebookCellExecutionState');
return extHostNotebookKernels.onDidChangeNotebookCellExecutionState(listener, thisArgs, disposables);
},
createConcatTextDocument(notebook, selector) {
checkProposedApiEnabled(extension, 'notebookConcatTextDocument');
extHostApiDeprecation.report('notebookConcatTextDocument', extension, 'This proposal is not on track for finalization and will be removed.');
return new ExtHostNotebookConcatDocument(extHostNotebookDocuments, extHostDocuments, notebook, selector);
},
createNotebookProxyController(id: string, notebookType: string, label: string, handler: () => vscode.NotebookController | string | Thenable<vscode.NotebookController | string>) {
checkProposedApiEnabled(extension, 'notebookProxyController');
return extHostNotebookProxyKernels.createNotebookProxyController(extension, id, notebookType, label, handler);
Expand Down
192 changes: 0 additions & 192 deletions src/vs/workbench/api/common/extHostNotebookConcatDocument.ts

This file was deleted.

0 comments on commit 50ea161

Please sign in to comment.