Skip to content

Commit d470f53

Browse files
authored
run notebook execution participants --> private (microsoft#183164)
1 parent 12f235d commit d470f53

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export class NotebookExecutionService implements INotebookExecutionService, IDis
112112
return toDisposable(() => this.cellExecutionParticipants.delete(participant));
113113
}
114114

115-
async runExecutionParticipants(executions: INotebookCellExecution[]): Promise<void> {
115+
private async runExecutionParticipants(executions: INotebookCellExecution[]): Promise<void> {
116116
for (const participant of this.cellExecutionParticipants) {
117117
await participant.onWillExecuteCell(executions);
118118
}

src/vs/workbench/contrib/notebook/common/notebookExecutionService.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ export interface INotebookExecutionService {
3939
cancelNotebookCells(notebook: INotebookTextModel, cells: Iterable<NotebookCellTextModel>): Promise<void>;
4040
cancelNotebookCellHandles(notebook: INotebookTextModel, cells: Iterable<number>): Promise<void>;
4141
registerExecutionParticipant(participant: ICellExecutionParticipant): IDisposable;
42-
runExecutionParticipants(executions: INotebookCellExecution[]): Promise<void>;
4342
}
4443

4544
export interface ICellExecutionParticipant {

0 commit comments

Comments
 (0)