Skip to content

Commit 65dd3a8

Browse files
authored
format code
1 parent 8e72b60 commit 65dd3a8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Src/CSharpier.Core/CSharp/SyntaxPrinter/SyntaxNodePrinters/BinaryExpression.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,8 @@ private static List<Doc> PrintBinaryExpression(SyntaxNode node, PrintingContext
9292
) ?? expression
9393
*/
9494
if (
95-
binaryExpressionSyntax.Left is not InvocationExpressionSyntax
96-
{
97-
Expression: IdentifierNameSyntax
98-
}
95+
binaryExpressionSyntax.Left
96+
is not InvocationExpressionSyntax { Expression: IdentifierNameSyntax }
9997
)
10098
{
10199
docs.Add(

0 commit comments

Comments
 (0)