Skip to content

Commit

Permalink
Remove unused parameter (#62685)
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 committed Jul 20, 2022
1 parent f2b7690 commit 9b22312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Compilers/CSharp/Test/Syntax/Syntax/SyntaxTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private static void AssertIncompleteSubmission(string code)
Assert.False(SyntaxFactory.IsCompleteSubmission(SyntaxFactory.ParseSyntaxTree(code, options: TestOptions.Script)));
}

private static void AssertCompleteSubmission(string code, bool isComplete = true)
private static void AssertCompleteSubmission(string code)
{
Assert.True(SyntaxFactory.IsCompleteSubmission(SyntaxFactory.ParseSyntaxTree(code, options: TestOptions.Script)));
}
Expand Down

0 comments on commit 9b22312

Please sign in to comment.