From 3d66ea00d9d1dd18bee3c861feab64aa277bbcc0 Mon Sep 17 00:00:00 2001 From: Kevin Van keer Date: Wed, 12 Jun 2024 16:48:41 +0200 Subject: [PATCH] GH-9230 fix error in code snippet Fixes: #9230 Some code was present in the code snippet that shouldn't be there. **Auto-cherry-pick to `6.3.x` & `6.2.x`** --- src/reference/antora/modules/ROOT/pages/hazelcast.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reference/antora/modules/ROOT/pages/hazelcast.adoc b/src/reference/antora/modules/ROOT/pages/hazelcast.adoc index 9d7c3449fc..2736d81c32 100644 --- a/src/reference/antora/modules/ROOT/pages/hazelcast.adoc +++ b/src/reference/antora/modules/ROOT/pages/hazelcast.adoc @@ -604,7 +604,7 @@ The xref:channel/implementations.adoc#channel-implementations-queuechannel[`Queu ---- @Bean PollableChannel hazelcastQueueChannel(HazelcastInstance hazelcastInstance) { - return new QueueChannel(hazelcastInstance.Message>getQueue("springIntegrationQueue")); + return new QueueChannel(hazelcastInstance.getQueue("springIntegrationQueue")); } ----