changed doGetBean signature back to protected (SPR-6957)

This commit is contained in:
Juergen Hoeller 2010-03-10 13:38:46 +00:00
parent ccb312a974
commit 95ad7168bf
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ public abstract class AbstractBeanFactory extends FactoryBeanRegistrySupport imp
* @throws BeansException if the bean could not be created * @throws BeansException if the bean could not be created
*/ */
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
private <T> T doGetBean( protected <T> T doGetBean(
final String name, final Class<T> requiredType, final Object[] args, boolean typeCheckOnly) final String name, final Class<T> requiredType, final Object[] args, boolean typeCheckOnly)
throws BeansException { throws BeansException {