This commit is contained in:
rebornix
2021-02-22 14:32:35 -08:00
parent 4f25f18bd7
commit 3214b95098
2 changed files with 2 additions and 12 deletions

View File

@@ -334,10 +334,6 @@ export class ExtHostNotebookDocument extends Disposable {
return this._cells.find(cell => cell.handle === cellHandle);
}
getCellIndexFromHandle(cellHandle: number): number | undefined {
return this._cells.findIndex(cell => cell.handle === cellHandle);
}
getCellIndex(cell: ExtHostCell): number {
return this._cells.indexOf(cell);
}