Skip to content

Commit 8fe2d8b

Browse files
committed
fixing the build
1 parent 5ba83d8 commit 8fe2d8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DryIoc/Container.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2693,7 +2693,7 @@ private Registry UnregisterServiceFactory(Type serviceType, object serviceKey =
26932693
}
26942694

26952695
// todo: huh - no perf here?
2696-
removed = oldFactories.Enumerate().Except(remainingFactories.Enumerate()).Select(f => f.Value).ToArray();
2696+
removed = oldFactories.Enumerate().Except(remainingFactories.Enumerate()).Select(x => x.Value).ToArray();
26972697

26982698
if (remainingFactories.Height == 1 && DefaultKey.Value.Equals(remainingFactories.Key))
26992699
return remainingFactories.Value; // replace entry with single remaining default factory

0 commit comments

Comments
 (0)