Skip to content

Commit

Permalink
fix #192043
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge committed Jul 17, 2024
1 parent 842e001 commit bfa1c61
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,6 @@ namespace Configuration {

const taskDefinitionsExtPoint = ExtensionsRegistry.registerExtensionPoint<Configuration.ITaskDefinition[]>({
extensionPoint: 'taskDefinitions',
activationEventsGenerator: (contributions: Configuration.ITaskDefinition[], result: { push(item: string): void }) => {
for (const task of contributions) {
if (task.type) {
result.push(`onTaskType:${task.type}`);
}
}
},
jsonSchema: {
description: nls.localize('TaskDefinitionExtPoint', 'Contributes task kinds'),
type: 'array',
Expand Down

0 comments on commit bfa1c61

Please sign in to comment.