Skip to content

Commit

Permalink
Attempt to fix #165
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanMaron committed Mar 24, 2022
1 parent d56183a commit 3550e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Design/Rule0003DoNotUseObjectIDsInVariablesOrProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private static string GetCorrectName(string kind, string OldName, SyntaxNodeAnal
}
catch
{
ctx.ReportDiagnostic(Diagnostic.Create(DiagnosticDescriptors.Rule0000ErrorInRule, ctx.Node.GetLocation(), new Object[] { "Rule0003", "unknown" }));
ctx.ReportDiagnostic(Diagnostic.Create(DiagnosticDescriptors.Rule0000ErrorInRule, ctx.Node.GetLocation(), new Object[] { "Rule0003", "unknown", "" }));
}

}
Expand Down

0 comments on commit 3550e42

Please sign in to comment.