Skip to content

Commit

Permalink
Fixing more analyzer violations
Browse files Browse the repository at this point in the history
  • Loading branch information
Piedone committed Dec 25, 2024
1 parent a57a14c commit 686a7ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ private static bool HasRequiredAttribute(ModelExpression modelExpression) =>
.GetCustomAttributes(typeof(RequiredAttribute), inherit: false)
.FirstOrDefault() is RequiredAttribute;

private static void AddBoolAttribute(IDictionary<string, object> attributes, bool value, string attributeName)
private static void AddBoolAttribute(Dictionary<string, object> attributes, bool value, string attributeName)
{
if (value)
{
Expand Down

0 comments on commit 686a7ff

Please sign in to comment.