diff --git a/src/reference/antora/modules/ROOT/pages/hazelcast.adoc b/src/reference/antora/modules/ROOT/pages/hazelcast.adoc index 9d7c3449fcc..2736d81c322 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")); } ----