Skip to content

Commit 9c0c4e2

Browse files
committed
Fix Checkstyle violation in the Javadoc
1 parent 0e01187 commit 9c0c4e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-amqp/src/main/java/org/springframework/amqp/core/AsyncAmqpTemplate.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,11 @@ default <R, S> CompletableFuture<Boolean> receiveAndReply(ReceiveAndReplyCallbac
109109
* The request message must have a {@code replyTo} property.
110110
* The request {@code messageId} property is used for correlation.
111111
* The callback might not produce a reply with the meaning nothing to answer.
112+
* @param <R> the request body type.
113+
* @param <S> the response body type
112114
* @param queueName the queue to consume request.
113115
* @param callback an application callback to handle request and produce reply.
114116
* @return the completion status: true if no errors and reply has been produced.
115-
* @param <R> the request body type.
116-
* @param <S> the response body type
117117
*/
118118
default <R, S> CompletableFuture<Boolean> receiveAndReply(String queueName, ReceiveAndReplyCallback<R, S> callback) {
119119
throw new UnsupportedOperationException();

0 commit comments

Comments
 (0)