From 9c0c4e28539ad506b2a49836637f4ad6c25948bc Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 6 Mar 2025 15:59:55 -0500 Subject: [PATCH] Fix Checkstyle violation in the Javadoc --- .../java/org/springframework/amqp/core/AsyncAmqpTemplate.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-amqp/src/main/java/org/springframework/amqp/core/AsyncAmqpTemplate.java b/spring-amqp/src/main/java/org/springframework/amqp/core/AsyncAmqpTemplate.java index 90dfe728..7e8c00fe 100644 --- a/spring-amqp/src/main/java/org/springframework/amqp/core/AsyncAmqpTemplate.java +++ b/spring-amqp/src/main/java/org/springframework/amqp/core/AsyncAmqpTemplate.java @@ -109,11 +109,11 @@ public interface AsyncAmqpTemplate { * The request message must have a {@code replyTo} property. * The request {@code messageId} property is used for correlation. * The callback might not produce a reply with the meaning nothing to answer. + * @param the request body type. + * @param the response body type * @param queueName the queue to consume request. * @param callback an application callback to handle request and produce reply. * @return the completion status: true if no errors and reply has been produced. - * @param the request body type. - * @param the response body type */ default CompletableFuture receiveAndReply(String queueName, ReceiveAndReplyCallback callback) { throw new UnsupportedOperationException();