Fixes #11229: Flickering red underlines in code with errors

This commit is contained in:
Dirk Baeumer 2016-08-30 21:20:38 +02:00
parent e1b98c60f6
commit 964be94e01

View file

@ -251,7 +251,6 @@ class LanguageProvider {
public syntaxDiagnosticsReceived(file: string, diagnostics: Diagnostic[]): void {
this.syntaxDiagnostics[file] = diagnostics;
this.currentDiagnostics.set(Uri.file(file), diagnostics);
}
public semanticDiagnosticsReceived(file: string, diagnostics: Diagnostic[]): void {