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

View File

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