Remove duplicate blanks in log message

This commit is contained in:
Pascal Schumacher
2018-04-15 11:11:23 +02:00
committed by Mahmoud Ben Hassine
parent f0c60a3831
commit fbbd3d3fa8

View File

@@ -219,7 +219,7 @@ public abstract class AbstractListenerFactoryBean<T> implements FactoryBean<Obje
}
if(targetSource != null && targetSource.getTargetClass() != null && targetSource.getTargetClass().isInterface()) {
logger.warn(String.format("%s is an interface. The implementing class will not be queried for annotation based listener configurations. If using @StepScope on a @Bean method, be sure to return the implementing class so listener annotations can be used.", targetSource.getTargetClass().getName()));
logger.warn(String.format("%s is an interface. The implementing class will not be queried for annotation based listener configurations. If using @StepScope on a @Bean method, be sure to return the implementing class so listener annotations can be used.", targetSource.getTargetClass().getName()));
}
}
for (ListenerMetaData metaData : metaDataValues) {