Skip to content

Commit 184340f

Browse files
PascalSchumacherjhoeller
authored andcommitted
Remove duplicate blank in log message of ExecutorConfigurationSupport#initialize
(obvious fix)
1 parent 9cb8b4b commit 184340f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-context/src/main/java/org/springframework/scheduling/concurrent/ExecutorConfigurationSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public void afterPropertiesSet() {
168168
*/
169169
public void initialize() {
170170
if (logger.isInfoEnabled()) {
171-
logger.info("Initializing ExecutorService " + (this.beanName != null ? " '" + this.beanName + "'" : ""));
171+
logger.info("Initializing ExecutorService" + (this.beanName != null ? " '" + this.beanName + "'" : ""));
172172
}
173173
if (!this.threadNamePrefixSet && this.beanName != null) {
174174
setThreadNamePrefix(this.beanName + "-");

0 commit comments

Comments
 (0)