Skip to content

Commit 97e7d81

Browse files
committed
Fixed javadoc errors which were failing mvn package -DskipTests when
using java 8 compiler Signed-off-by: Rehan Shaukat <rehan.shaukat@gmail.com>
1 parent dfca976 commit 97e7d81

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

org.eclipse.paho.mqttv5.client/src/main/java/org/eclipse/paho/mqttv5/client/MqttConnectionOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ public int getMaxReconnectDelay() {
319319
* Set the maximum time to wait between reconnects
320320
* @param maxReconnectDelay the duration (in millis)
321321
*/
322-
public void setMaxReconnectDelay(int macReconnectDelay) {
323-
this.maxReconnectDelay = macReconnectDelay;
322+
public void setMaxReconnectDelay(int maxReconnectDelay) {
323+
this.maxReconnectDelay = maxReconnectDelay;
324324
}
325325

326326

org.eclipse.paho.mqttv5.client/src/main/java/org/eclipse/paho/mqttv5/client/internal/ClientState.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,7 @@ protected void notifyComplete(MqttToken token) throws MqttException {
12591259
* Updates a token with the latest reason codes, currently only used for PubRec
12601260
* messages.
12611261
*
1262-
* @param msg
1262+
* @param ack
12631263
* - The message that we are using for the update
12641264
* @param token
12651265
* - The Token we are updating

0 commit comments

Comments
 (0)