From 576b11f86b198b91224bfed716bdb69166133cfd Mon Sep 17 00:00:00 2001 From: Martin Strecker Date: Mon, 11 Dec 2023 14:15:27 +0100 Subject: [PATCH] More comments. --- .../SonarAnalyzer.Common/Rules/Utilities/UtilityAnalyzerBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyzers/src/SonarAnalyzer.Common/Rules/Utilities/UtilityAnalyzerBase.cs b/analyzers/src/SonarAnalyzer.Common/Rules/Utilities/UtilityAnalyzerBase.cs index 6aa11212cf1..867f4b6965f 100644 --- a/analyzers/src/SonarAnalyzer.Common/Rules/Utilities/UtilityAnalyzerBase.cs +++ b/analyzers/src/SonarAnalyzer.Common/Rules/Utilities/UtilityAnalyzerBase.cs @@ -133,7 +133,7 @@ protected sealed override void Initialize(SonarAnalysisContext context) => treeMessages.CompleteAdding(); try { - consumerTask.Wait(cancel); // Throws, if the task failed. + consumerTask.Wait(cancel); // Wait until all messages are written to disk. Throws, if the task failed. } finally {