mirror of https://github.com/AMT-Cheif/Stylet.git
Fix incorrect assertion
This commit is contained in:
parent
63a9c4a70f
commit
9fa749f0b7
|
@ -33,7 +33,7 @@ namespace StyletIoC.Internal.RegistrationCollections
|
|||
lock (this.registrationsLock)
|
||||
{
|
||||
// Should have been caught by SingleRegistration.AddRegistration
|
||||
Debug.Assert(this.registrations.All(x => x.TypeHandle.Equals(registration.TypeHandle)));
|
||||
Debug.Assert(!this.registrations.Any(x => x.TypeHandle.Equals(registration.TypeHandle)));
|
||||
this.registrations.Add(registration);
|
||||
return this;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue