From efd073c9e00b6d88e37be011b5e5dffc27d29d3e Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Wed, 12 Jan 2022 09:21:37 -0500 Subject: [PATCH] Fix typo in StompInboundChannelAdapter JavaDocs Fixes https://github.com/spring-projects/spring-integration/issues/3710 --- .../integration/stomp/inbound/StompInboundChannelAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-stomp/src/main/java/org/springframework/integration/stomp/inbound/StompInboundChannelAdapter.java b/spring-integration-stomp/src/main/java/org/springframework/integration/stomp/inbound/StompInboundChannelAdapter.java index 84b34096de..8d09b96719 100644 --- a/spring-integration-stomp/src/main/java/org/springframework/integration/stomp/inbound/StompInboundChannelAdapter.java +++ b/spring-integration-stomp/src/main/java/org/springframework/integration/stomp/inbound/StompInboundChannelAdapter.java @@ -262,7 +262,7 @@ public class StompInboundChannelAdapter extends MessageProducerSupport implement } else { logger.warn(() -> "The StompInboundChannelAdapter [" + getComponentName() + - "] ins't connected to StompSession. Check the state of [" + this.stompSessionManager + "]"); + "] is not connected to StompSession. Check the state of [" + this.stompSessionManager + "]"); } }