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.
2 parents 7bb0c5c + 94f2fbc commit 94bd301Copy full SHA for 94bd301
src/Castle.Windsor/MicroKernel/Proxy/ProxyOptions.cs
@@ -234,7 +234,7 @@ private bool AdditionalInterfacesAreEquals(ProxyOptions proxyOptions)
234
}
235
for (var i = 0; i < interfaceList.Count; ++i)
236
{
237
- if (!proxyOptions.interfaceList.Contains(interfaceList[0]))
+ if (!proxyOptions.interfaceList.Contains(interfaceList[i]))
238
239
return false;
240
@@ -280,7 +280,7 @@ private bool MixInsAreEquals(ProxyOptions proxyOptions)
280
281
for (var i = 0; i < mixInList.Count; ++i)
282
283
- if (!proxyOptions.mixInList.Contains(mixInList[0]))
+ if (!proxyOptions.mixInList.Contains(mixInList[i]))
284
285
286
0 commit comments