From f8cc4918d950e971f2c8b7a7ba895ac6840b434e Mon Sep 17 00:00:00 2001 From: setoguchi Date: Mon, 25 Sep 2017 14:50:53 +0900 Subject: [PATCH] fix typo --- .../configuration/annotation/AbstractBatchConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/configuration/annotation/AbstractBatchConfiguration.java b/spring-batch-core/src/main/java/org/springframework/batch/core/configuration/annotation/AbstractBatchConfiguration.java index 1997a0f98..ce714604b 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/configuration/annotation/AbstractBatchConfiguration.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/configuration/annotation/AbstractBatchConfiguration.java @@ -105,7 +105,7 @@ public abstract class AbstractBatchConfiguration implements ImportAware { this.configurer = configurer; return configurer; } else { - throw new IllegalStateException("To use the default BatchConfigurer the context must contain no more than" + + throw new IllegalStateException("To use the default BatchConfigurer the context must contain no more than " + "one DataSource, found " + dataSources.size()); } }