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 2b0532e910
commit 29dc4b05bf

View File

@@ -225,7 +225,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) {