Skip to content

Commit 04381a4

Browse files
committed
Formatting
1 parent 44b4dbf commit 04381a4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/main/java/com/hivemq/client2/mqtt/mqtt3/Mqtt3BlockingClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public interface Mqtt3BlockingClient extends Mqtt3Client {
8484
* @return the SubAck message if all subscriptions of the Subscribe message were successful (the SubAck message
8585
* contains no Error Codes).
8686
* @throws com.hivemq.client2.mqtt.mqtt3.exceptions.Mqtt3SubAckException wrapping the SubAck message if it contains
87-
* at least one Error Code.
87+
* at least one Error Code.
8888
*/
8989
@NotNull Mqtt3SubAck subscribe(@NotNull Mqtt3Subscribe subscribe);
9090

src/main/java/com/hivemq/client2/mqtt/mqtt5/Mqtt5BlockingClient.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public interface Mqtt5BlockingClient extends Mqtt5Client {
8686
* @return the SubAck message if all subscriptions of the Subscribe message were successful (the SubAck message
8787
* contains no Error Codes).
8888
* @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5SubAckException wrapping the SubAck message if it contains
89-
* at least one Error Code.
89+
* at least one Error Code.
9090
*/
9191
@NotNull Mqtt5SubAck subscribe(@NotNull Mqtt5Subscribe subscribe);
9292

@@ -129,7 +129,7 @@ public interface Mqtt5BlockingClient extends Mqtt5Client {
129129
* @return the UnsubAck message if all Topic Filters of the Unsubscribe message were successfully unsubscribed (the
130130
* UnsubAck message contains no Error Codes).
131131
* @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5UnsubAckException wrapping the UnsubAck message if it
132-
* contains at least one Error Code.
132+
* contains at least one Error Code.
133133
*/
134134
@NotNull Mqtt5UnsubAck unsubscribe(@NotNull Mqtt5Unsubscribe unsubscribe);
135135

@@ -151,10 +151,10 @@ public interface Mqtt5BlockingClient extends Mqtt5Client {
151151
* @param publish the Publish message sent to the broker.
152152
* @return the {@link Mqtt5PublishResult} if the Publish message was successfully published (no acknowledgement
153153
* message contains an Error Code, {@link Mqtt5PublishResult#getError()} will always be absent).
154-
* @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5PubAckException wrapping the corresponding PubAck message if
155-
* it contains an Error Code.
156-
* @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5PubRecException wrapping the corresponding PubRec message if
157-
* it contains an Error Code.
154+
* @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5PubAckException wrapping the corresponding PubAck message
155+
* if it contains an Error Code.
156+
* @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5PubRecException wrapping the corresponding PubRec message
157+
* if it contains an Error Code.
158158
*/
159159
@NotNull Mqtt5PublishResult publish(@NotNull Mqtt5Publish publish);
160160

@@ -174,7 +174,7 @@ public interface Mqtt5BlockingClient extends Mqtt5Client {
174174
* Re-authenticates this client.
175175
*
176176
* @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5AuthException wrapping the Auth message with the Error Code
177-
* if not re-authenticated successfully.
177+
* if not re-authenticated successfully.
178178
*/
179179
void reauth();
180180

0 commit comments

Comments
 (0)