Skip to content

Commit

Permalink
Fix bad javadoc tag (#769)
Browse files Browse the repository at this point in the history
* Fixed bad Javadoc tag
  • Loading branch information
andsel committed Aug 2, 2023
1 parent d46dfa0 commit a869e55
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ final class SessionData implements Delayed {
/**
* Construct a new SessionData without expiration set yet.
*
* @expiryInterval seconds after which the persistent session could be dropped.
* @param expiryInterval seconds after which the persistent session could be dropped.
* */
public SessionData(String clientId, MqttVersion version, int expiryInterval, Clock clock) {
this.clientId = clientId;
Expand All @@ -38,7 +38,7 @@ public SessionData(String clientId, MqttVersion version, int expiryInterval, Clo
/**
* Construct SessionData with an expiration instant, created by loading from the storage.
*
* @expiryInterval seconds after which the persistent session could be dropped.
* @param expiryInterval seconds after which the persistent session could be dropped.
* */
public SessionData(String clientId, Instant expireAt, MqttVersion version, int expiryInterval, Clock clock) {
Objects.requireNonNull(expireAt, "An expiration time is requested");
Expand Down

0 comments on commit a869e55

Please sign in to comment.