diff --git a/Decomposer/src/aigenerated/TypeDecomposer.cs b/Decomposer/src/aigenerated/TypeDecomposer.cs index 11f3c81..7ccec7b 100644 --- a/Decomposer/src/aigenerated/TypeDecomposer.cs +++ b/Decomposer/src/aigenerated/TypeDecomposer.cs @@ -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; @@ -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;