consistent caching of @Autowired arguments in field and method case (SPR-7635)

This commit is contained in:
Juergen Hoeller
2010-10-14 09:34:31 +00:00
parent ffa4ed093f
commit 5cb06f5da2

View File

@@ -567,9 +567,6 @@ public class AutowiredAnnotationBeanPostProcessor extends InstantiationAwareBean
this.cachedMethodArguments[i] = new RuntimeBeanReference(autowiredBeanName);
}
}
else {
this.cachedMethodArguments[i] = arguments[i];
}
}
}
}