Skip to content

Commit f949885

Browse files
committed
Change the string format
1 parent eae794c commit f949885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rules/AvoidUsingDeprecatedManifestFields.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public IEnumerable<DiagnosticRecord> AnalyzeScript(Ast ast, string fileName)
6060
{
6161
foreach (var warning in result)
6262
{
63-
yield return new DiagnosticRecord(String.Format((CultureInfo.CurrentCulture, warning.BaseObject.ToString()), ast.Extent, GetName(), DiagnosticSeverity.Warning, fileName);
63+
yield return new DiagnosticRecord(String.Format(CultureInfo.CurrentCulture, warning.BaseObject.ToString()), ast.Extent, GetName(), DiagnosticSeverity.Warning, fileName);
6464
}
6565
}
6666

0 commit comments

Comments
 (0)