Skip to content

Commit d729cf8

Browse files
committed
fix: remove the redundant context argument.
- Removed the `context` argument from in the new `supportUnsupportedLanguages` configuration changed event.
1 parent 092b729 commit d729cf8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export function activate(context: vscode.ExtensionContext) {
9090
if (event.affectsConfiguration(`${extensionName}.supportUnsupportedLanguages`)) {
9191
configuration.updateSingleLineCommentLanguageDefinitions();
9292

93-
const configureCommentBlocksDisposable = configuration.configureCommentBlocks(context);
93+
const configureCommentBlocksDisposable = configuration.configureCommentBlocks();
9494

9595
disposables.push(...configureCommentBlocksDisposable);
9696
}

0 commit comments

Comments
 (0)