@@ -325,9 +325,9 @@ public void copyConfigurationFrom(ConfigurableBeanFactory otherFactory) {
325
325
this .allowBeanDefinitionOverriding = otherListableFactory .allowBeanDefinitionOverriding ;
326
326
this .allowEagerClassLoading = otherListableFactory .allowEagerClassLoading ;
327
327
this .dependencyComparator = otherListableFactory .dependencyComparator ;
328
- // A clone of the AutowireCandidateResolver since it is potentially BeanFactoryAware...
328
+ // A clone of the AutowireCandidateResolver since it is potentially BeanFactoryAware
329
329
setAutowireCandidateResolver (otherListableFactory .getAutowireCandidateResolver ().cloneIfNecessary ());
330
- // Make resolvable dependencies (e.g. ResourceLoader) available here as well...
330
+ // Make resolvable dependencies (e.g. ResourceLoader) available here as well
331
331
this .resolvableDependencies .putAll (otherListableFactory .resolvableDependencies );
332
332
}
333
333
}
@@ -354,7 +354,7 @@ public <T> T getBean(Class<T> requiredType, @Nullable Object... args) throws Bea
354
354
}
355
355
356
356
@ Override
357
- public <T > ObjectProvider <T > getBeanProvider (Class <T > requiredType ) {
357
+ public <T > ObjectProvider <T > getBeanProvider (Class <T > requiredType ) {
358
358
Assert .notNull (requiredType , "Required type must not be null" );
359
359
return getBeanProvider (ResolvableType .forRawClass (requiredType ));
360
360
}
@@ -530,7 +530,7 @@ private String[] doGetBeanNamesForType(ResolvableType type, boolean includeNonSi
530
530
matchFound = isTypeMatch (beanName , type , allowFactoryBeanInit );
531
531
}
532
532
}
533
- else {
533
+ else {
534
534
if (includeNonSingletons || isNonLazyDecorated ||
535
535
(allowFactoryBeanInit && isSingleton (beanName , mbd , dbd ))) {
536
536
matchFound = isTypeMatch (beanName , type , allowFactoryBeanInit );
0 commit comments