Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 93e08cc

Browse files
committed
Fix some javadoc warning
1 parent 07891ca commit 93e08cc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/main/java/reactor/rabbitmq/ChannelPool.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ public interface ChannelPool extends AutoCloseable {
4141
/**
4242
* The {@link Channel} to use for sending a flux of messages.
4343
*
44-
* @return
44+
* @return the channel mono to use
4545
*/
4646
Mono<? extends Channel> getChannelMono();
4747

4848
/**
4949
* The closing logic when the {@link Channel} is disposed.
5050
*
51-
* @return
51+
* @return the closing logic to use
5252
*/
5353
BiConsumer<SignalType, Channel> getChannelCloseHandler();
5454

src/main/java/reactor/rabbitmq/SendOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public SendOptions exceptionHandler(BiConsumer<Sender.SendContext, Exception> ex
5858
/**
5959
* Return the channel mono to use to send messages.
6060
*
61-
* @return
61+
* @return the channel mono to use
6262
* @since 1.1.0
6363
*/
6464
public Mono<? extends Channel> getChannelMono() {
@@ -80,7 +80,7 @@ public SendOptions channelMono(Mono<? extends Channel> channelMono) {
8080
/**
8181
* Return the channel closing logic.
8282
*
83-
* @return
83+
* @return the closing logic to use
8484
* @since 1.1.0
8585
*/
8686
public BiConsumer<SignalType, Channel> getChannelCloseHandler() {

src/main/java/reactor/rabbitmq/SenderOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public SenderOptions channelMono(Mono<? extends Channel> channelMono) {
132132
/**
133133
* Returns the channel mono to use in send methods.
134134
*
135-
* @return
135+
* @return the channel mono to use
136136
* @since 1.1.0
137137
*/
138138
public Mono<? extends Channel> getChannelMono() {
@@ -142,7 +142,7 @@ public Mono<? extends Channel> getChannelMono() {
142142
/**
143143
* Returns the channel closing logic.
144144
*
145-
* @return
145+
* @return the closing logic to use
146146
* @since 1.1.0
147147
*/
148148
public BiConsumer<SignalType, Channel> getChannelCloseHandler() {

0 commit comments

Comments
 (0)