Skip to content

Commit 4c39cd8

Browse files
authored
Merge pull request #541 from rehanshaukat/fix-javadoc-errors
Fixed javadoc errors which were failing `mvn package -DskipTests` when
2 parents a3e259c + 97e7d81 commit 4c39cd8

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
@@ -320,8 +320,8 @@ public int getMaxReconnectDelay() {
320320
* Set the maximum time to wait between reconnects
321321
* @param maxReconnectDelay the duration (in millis)
322322
*/
323-
public void setMaxReconnectDelay(int macReconnectDelay) {
324-
this.maxReconnectDelay = macReconnectDelay;
323+
public void setMaxReconnectDelay(int maxReconnectDelay) {
324+
this.maxReconnectDelay = maxReconnectDelay;
325325
}
326326

327327

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
@@ -1317,7 +1317,7 @@ protected void notifyComplete(MqttToken token) throws MqttException {
13171317
* Updates a token with the latest reason codes, currently only used for PubRec
13181318
* messages.
13191319
*
1320-
* @param msg
1320+
* @param ack
13211321
* - The message that we are using for the update
13221322
* @param token
13231323
* - The Token we are updating

0 commit comments

Comments
 (0)