From 2070a43ac757b73e121bd39a3f873da898f5cd6a Mon Sep 17 00:00:00 2001 From: Akihiko Odaki Date: Sat, 6 Oct 2018 18:39:01 +0900 Subject: [PATCH] Fix justification message of Microsoft.Research.CodeAnalysis.Witness --- Microsoft.Research/Analyzers/Witness.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Microsoft.Research/Analyzers/Witness.cs b/Microsoft.Research/Analyzers/Witness.cs index e7bde7aa..80073791 100644 --- a/Microsoft.Research/Analyzers/Witness.cs +++ b/Microsoft.Research/Analyzers/Witness.cs @@ -252,7 +252,7 @@ private void EnsureScoreAndJustificationAreComputed(WarningScoresManager scoresM this.score = pair.Item1; this.justification_expanded = pair.Item2; - this.justification = String.Join(" ", this.justification_expanded.ToString()); + this.justification = String.Join(" ", this.justification_expanded); } public string GetWarningLevel(double score, WarningScoresManager scoresManager)