Skip to content

Commit

Permalink
Fix compiler warning (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored Sep 10, 2021
1 parent f45543c commit 3536f22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exercism.TestRunner.CSharp/TestsRewriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public override SyntaxNode VisitConstructorDeclaration(ConstructorDeclarationSyn
Argument(
IdentifierName("_stringWriter"))))))));

public override SyntaxNode? VisitMethodDeclaration(MethodDeclarationSyntax node)
public override SyntaxNode VisitMethodDeclaration(MethodDeclarationSyntax node)
{
if (node.Identifier.Text == "Dispose")
return base.VisitMethodDeclaration(
Expand Down

0 comments on commit 3536f22

Please sign in to comment.