fix AssemblyObjectDefinitionScanner, was using base.Scan method instead of possible override

This commit is contained in:
Marko Lahma
2013-10-28 12:44:56 +02:00
parent ddd6e3a76b
commit c99b7d313e
3 changed files with 54 additions and 1 deletions

View File

@@ -159,7 +159,7 @@ namespace Spring.Context.Attributes
/// <param name="registry">The registry within which to register the types.</param>
public virtual void ScanAndRegisterTypes(IObjectDefinitionRegistry registry)
{
IEnumerable<Type> configTypes = base.Scan();
IEnumerable<Type> configTypes = Scan();
RegisterDefinitionsForTypes(registry, configTypes);
}