Skip to content

Commit

Permalink
Merge pull request #52704 from CyrusNajmabadi/fixBuild
Browse files Browse the repository at this point in the history
Fix build caused by independent merges that conflicted
  • Loading branch information
CyrusNajmabadi authored Apr 18, 2021
2 parents 9c67fb1 + 4e2de2c commit 11d6292
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ private static bool StatementClosingDelimiterIsMissing(SyntaxNode currentNode)
/// </returns>
private static bool RequiredDelimiterIsMissing(SyntaxNode currentNode)
{
return currentNode.GetBrackets().closeBrace.IsMissing ||
return currentNode.GetBrackets().closeBracket.IsMissing ||
currentNode.GetParentheses().closeParen.IsMissing;
}
}
Expand Down

0 comments on commit 11d6292

Please sign in to comment.