We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b59977f commit e726d19Copy full SHA for e726d19
InterfaceStubGenerator.Shared/InterfaceStubGenerator.cs
@@ -130,9 +130,8 @@ public void GenerateInterfaceStubs<TContext>(
130
131
// The interface has no refit methods, but its base interfaces might
132
var hasDerivedRefit = ifaceSymbol.AllInterfaces
133
- .SelectMany(i => i.GetMembers().OfType<IMethodSymbol>())
134
- .Where(m => IsRefitMethod(m, httpMethodBaseAttributeSymbol))
135
- .Any();
+ .SelectMany(i => i.GetMembers().OfType<IMethodSymbol>())
+ .Any(m => IsRefitMethod(m, httpMethodBaseAttributeSymbol));
136
137
if (hasDerivedRefit)
138
{
0 commit comments