remove ability to alter notebook output via WorkspaceEdit or NotebookEditorEdit

This commit is contained in:
Johannes Rieken
2021-04-21 11:42:58 +02:00
parent 4f9ac638ff
commit 9af75c08c5
5 changed files with 0 additions and 169 deletions

View File

@@ -57,17 +57,6 @@ class NotebookEditorCellEditBuilder implements vscode.NotebookEditorEdit {
});
}
replaceCellOutput(index: number, outputs: vscode.NotebookCellOutput[]): void {
this._throwIfFinalized();
this._collectedEdits.push({
editType: CellEditType.Output,
index,
outputs: outputs.map(output => {
return extHostConverter.NotebookCellOutput.from(output);
})
});
}
replaceCells(from: number, to: number, cells: vscode.NotebookCellData[]): void {
this._throwIfFinalized();
if (from === to && cells.length === 0) {