From 8d9903981efd41977e601ceddcca51eeb3cdd266 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 14 Mar 2019 10:27:29 -0400 Subject: [PATCH] Fix typo in AbstractMessageChann for "data types" --- .../integration/channel/AbstractMessageChannel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/channel/AbstractMessageChannel.java b/spring-integration-core/src/main/java/org/springframework/integration/channel/AbstractMessageChannel.java index b82ff8b0a0..a330ad65fd 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/channel/AbstractMessageChannel.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/channel/AbstractMessageChannel.java @@ -537,7 +537,7 @@ public abstract class AbstractMessageChannel extends IntegrationObjectSupport } } throw new MessageDeliveryException(message, "Channel '" + this.getComponentName() + - "' expected one of the following datataypes [" + + "' expected one of the following data types [" + StringUtils.arrayToCommaDelimitedString(this.datatypes) + "], but received [" + message.getPayload().getClass() + "]"); }