Skip to content

Commit

Permalink
[CodeFactor] Apply fixes to commit 3a0fd2f
Browse files Browse the repository at this point in the history
  • Loading branch information
code-factor committed Feb 6, 2025
1 parent 3a0fd2f commit 26a4dfc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ namespace Socordia.CodeAnalysis.AST.TypeNames;

public class NoTypeName : TypeName
{

}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protected override void ListenToNode(Driver context, EnumDeclaration node)
// .field public static literal valuetype Color R = int32(0)
for (int memberIndex = 0; memberIndex < node.Children.Count; memberIndex++)
{
var member = (EnumMemberDeclaration)node.Children[memberIndex];;
var member = (EnumMemberDeclaration)node.Children[memberIndex];

if (member.Value is EmptyNode)
{
Expand Down

0 comments on commit 26a4dfc

Please sign in to comment.