Skip to content

Commit

Permalink
style: Format code with dotnet-format
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsource-autofix[bot] authored Jul 6, 2023
1 parent 11db1f7 commit d40d65c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Decomposer/src/aigenerated/TypeDecomposer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void Execute(IncrementalGeneratorExecutionContext context)
// Generate an interface for each public property and method
foreach (var symbol in symbolsForType)
{
if(symbol is IPropertySymbol propertySymbol)
if (symbol is IPropertySymbol propertySymbol)
{
if (propertySymbol.IsReadOnly || propertySymbol.IsWriteOnly)
continue;
Expand All @@ -52,7 +52,7 @@ public void Execute(IncrementalGeneratorExecutionContext context)
interfaces.Add(interfaceSyntax);
break;
}
else if(symbol is IMethodSymbol)
else if (symbol is IMethodSymbol)
{
if (methodSymbol.IsAccessor())
continue;
Expand Down

0 comments on commit d40d65c

Please sign in to comment.