Fix typo in AbstractMessageChann for "data types"

This commit is contained in:
Artem Bilan
2019-03-14 10:27:29 -04:00
parent 84c69d5abc
commit 8d9903981e

View File

@@ -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() + "]");
}