From 20dd80d91a76cbe80fb1d1979c3a9f02d94ba161 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 29 Aug 2019 15:24:50 +0200 Subject: [PATCH] update API doc comment for https://github.com/microsoft/vscode/issues/47292 --- src/vs/vscode.d.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index aa0d8a1135a..4bf390ca0ca 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -8090,8 +8090,7 @@ declare module 'vscode' { export const onDidChangeDiagnostics: Event; /** - * Get all diagnostics for a given resource. *Note* that this includes diagnostics from - * all extensions but *not yet* from the task framework. + * Get all diagnostics for a given resource. * * @param resource A resource * @returns An array of [diagnostics](#Diagnostic) objects or an empty array. @@ -8099,8 +8098,7 @@ declare module 'vscode' { export function getDiagnostics(resource: Uri): Diagnostic[]; /** - * Get all diagnostics. *Note* that this includes diagnostics from - * all extensions but *not yet* from the task framework. + * Get all diagnostics. * * @returns An array of uri-diagnostics tuples or an empty array. */ -- GitLab