Skip to content

Commit e726d19

Browse files
fix: Refactor code formatting for better readability (#1564)
Reformatted the code to improve its readability by adjusting the indentation of the LINQ query, making it more consistent with coding standards.
1 parent b59977f commit e726d19

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

InterfaceStubGenerator.Shared/InterfaceStubGenerator.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,8 @@ public void GenerateInterfaceStubs<TContext>(
130130

131131
// The interface has no refit methods, but its base interfaces might
132132
var hasDerivedRefit = ifaceSymbol.AllInterfaces
133-
.SelectMany(i => i.GetMembers().OfType<IMethodSymbol>())
134-
.Where(m => IsRefitMethod(m, httpMethodBaseAttributeSymbol))
135-
.Any();
133+
.SelectMany(i => i.GetMembers().OfType<IMethodSymbol>())
134+
.Any(m => IsRefitMethod(m, httpMethodBaseAttributeSymbol));
136135

137136
if (hasDerivedRefit)
138137
{

0 commit comments

Comments
 (0)