INT-1230, removed eager setting of the ConversionService during initialization

This commit is contained in:
Oleg Zhurakousky
2010-07-21 18:04:53 +00:00
parent 082e0dd1c0
commit a44f618868

View File

@@ -79,11 +79,6 @@ public abstract class IntegrationObjectSupport implements BeanNameAware, NamedCo
}
public final void afterPropertiesSet() {
if (beanFactory != null){
if (this.getBeanFactory().containsBean(IntegrationContextUtils.INTEGRATION_CONVERSION_SERVICE_BEAN_NAME)){
this.setConversionService(this.getBeanFactory().getBean(IntegrationContextUtils.INTEGRATION_CONVERSION_SERVICE_BEAN_NAME, ConversionService.class));
}
}
try {
this.onInit();
}