mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
unnecessary null -> undefined.
This commit is contained in:
@@ -163,7 +163,7 @@ export class MainThreadNotebooks extends Disposable implements MainThreadNoteboo
|
||||
if (!textModel) {
|
||||
return false;
|
||||
}
|
||||
return textModel.applyEdits(modelVersionId, cellEdits, true, null, () => null, undefined);
|
||||
return textModel.applyEdits(modelVersionId, cellEdits, true, undefined, () => undefined, undefined);
|
||||
}
|
||||
|
||||
private _isDeltaEmpty(delta: INotebookDocumentsAndEditorsDelta) {
|
||||
|
||||
Reference in New Issue
Block a user