Skip to content

Commit b01e114

Browse files
committed
Link to broker current release documentation
1 parent ee784bc commit b01e114

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/docs/asciidoc/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ifndef::sourcedir[:sourcedir: ../../main/java]
66
:source-highlighter: prettify
77
:javadoc-url: https://rabbitmq.github.io/rabbitmq-amqp-java-client/snapshot/api
88

9-
The RabbitMQ AMQP 1.0 Java Client is a library to communicate with RabbitMQ using https://www.rabbitmq.com/docs/next/amqp[AMQP 1.0].
9+
The RabbitMQ AMQP 1.0 Java Client is a library to communicate with RabbitMQ using https://www.rabbitmq.com/docs/amqp[AMQP 1.0].
1010

1111
== Pre-requisites
1212

src/main/java/com/rabbitmq/client/amqp/AddressBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package com.rabbitmq.client.amqp;
1919

2020
/**
21-
* Builder for a <a href="https://www.rabbitmq.com/docs/next/amqp#address-v2">AMQP target address
21+
* Builder for a <a href="https://www.rabbitmq.com/docs/amqp#address-v2">AMQP target address
2222
* format v2.</a>
2323
*
2424
* @param <T> the type of object returned by methods, usually the object itself

src/main/java/com/rabbitmq/client/amqp/Publisher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ interface Context {
8989
* The status returned by the broker.
9090
*
9191
* @return status of the message
92-
* @see <a href="https://www.rabbitmq.com/docs/next/amqp#outcomes">AMQP Outcomes</a>
92+
* @see <a href="https://www.rabbitmq.com/docs/amqp#outcomes">AMQP Outcomes</a>
9393
*/
9494
Status status();
9595
}
9696

9797
/**
9898
* Message status.
9999
*
100-
* @see <a href="https://www.rabbitmq.com/docs/next/amqp#outcomes">AMQP Outcomes</a>
100+
* @see <a href="https://www.rabbitmq.com/docs/amqp#outcomes">AMQP Outcomes</a>
101101
*/
102102
enum Status {
103103
/** The message has been accepted by the broker. */

0 commit comments

Comments
 (0)