Skip to content

Commit 24a9388

Browse files
Jiaweizdevgaryrussell
authored andcommitted
Fix the wrong method return type in documentation
1 parent 20943cc commit 24a9388

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reference/asciidoc/amqp.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1562,9 +1562,9 @@ Object receiveAndConvert() throws AmqpException;
15621562
15631563
Object receiveAndConvert(String queueName) throws AmqpException;
15641564
1565-
Message receiveAndConvert(long timeoutMillis) throws AmqpException;
1565+
Object receiveAndConvert(long timeoutMillis) throws AmqpException;
15661566
1567-
Message receiveAndConvert(String queueName, long timeoutMillis) throws AmqpException;
1567+
Object receiveAndConvert(String queueName, long timeoutMillis) throws AmqpException;
15681568
----
15691569
====
15701570

0 commit comments

Comments
 (0)