Skip to content

Commit 278b6a3

Browse files
authored
Fix static fn call for nb codeaction (microsoft#217605)
fix static fn call
1 parent b7ff4c5 commit 278b6a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ export class CodeActionParticipantUtils {
499499
};
500500

501501
for (const codeActionKind of codeActionsOnSave) {
502-
const actionsToRun = await this.getActionsToRun(model, codeActionKind, excludes, languageFeaturesService, getActionProgress, token);
502+
const actionsToRun = await CodeActionParticipantUtils.getActionsToRun(model, codeActionKind, excludes, languageFeaturesService, getActionProgress, token);
503503
if (token.isCancellationRequested) {
504504
actionsToRun.dispose();
505505
return;

0 commit comments

Comments
 (0)