From 2cf1d7629e3510ecdd95914bf56991e65d878fd9 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Thu, 16 Oct 2008 19:47:39 +0000 Subject: [PATCH] INT-428 --- .../integration/gateway/AbstractMessagingGateway.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.integration/src/main/java/org/springframework/integration/gateway/AbstractMessagingGateway.java b/org.springframework.integration/src/main/java/org/springframework/integration/gateway/AbstractMessagingGateway.java index c8b6885389..4052ffee08 100644 --- a/org.springframework.integration/src/main/java/org/springframework/integration/gateway/AbstractMessagingGateway.java +++ b/org.springframework.integration/src/main/java/org/springframework/integration/gateway/AbstractMessagingGateway.java @@ -125,7 +125,7 @@ public abstract class AbstractMessagingGateway implements MessagingGateway, Mess public Object receive() { Assert.state(this.replyChannel != null && (this.replyChannel instanceof PollableChannel), - "no-arg receive is not supported, because no pollable reply channel has been configured"); + "receive is not supported, because no pollable reply channel has been configured"); Message message = this.channelTemplate.receive((PollableChannel) this.replyChannel); return this.fromMessage(message); }