remove comment

This commit is contained in:
dsyer
2009-12-29 14:50:23 +00:00
parent b3784f20ab
commit 7e46c8abae

View File

@@ -261,9 +261,6 @@ public class StepScope implements Scope, BeanFactoryPostProcessor, Ordered {
private static BeanDefinitionHolder createScopedProxy(String beanName, BeanDefinition definition,
BeanDefinitionRegistry registry, boolean proxyTargetClass) {
// TODO: (for Batch 2.1) detect presence of Spring 3.0 and use
// ScopedProxyUtils instead
BeanDefinitionHolder proxyHolder;
if (isSpringThree()) {
@@ -271,7 +268,6 @@ public class StepScope implements Scope, BeanFactoryPostProcessor, Ordered {
proxyTargetClass);
}
else {
// Create the scoped proxy...
proxyHolder = PlaceholderProxyFactoryBean.createScopedProxy(new BeanDefinitionHolder(definition, beanName),
registry, proxyTargetClass);