You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently AutowiredAnnotationBeanPostProcessor.buildAutowiringMetadata creates a new InjectionMetadata instance with an empty collection for beans that have no relevant annotations. It looks like the clazz parameter never escapes from the class so we could probably create a special shared InjectionMetadata.EMPTY instance to return in such cases.
The text was updated successfully, but these errors were encountered:
Currently
AutowiredAnnotationBeanPostProcessor.buildAutowiringMetadata
creates a newInjectionMetadata
instance with an empty collection for beans that have no relevant annotations. It looks like theclazz
parameter never escapes from the class so we could probably create a special sharedInjectionMetadata.EMPTY
instance to return in such cases.The text was updated successfully, but these errors were encountered: