From a869e55d301c534fb5a0f07b0154ff90d3764130 Mon Sep 17 00:00:00 2001 From: Andrea Selva Date: Wed, 2 Aug 2023 13:44:50 +0200 Subject: [PATCH] Fix bad javadoc tag (#769) * Fixed bad Javadoc tag --- .../src/main/java/io/moquette/broker/ISessionsRepository.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/broker/src/main/java/io/moquette/broker/ISessionsRepository.java b/broker/src/main/java/io/moquette/broker/ISessionsRepository.java index 640fc7f8f..3e3e252b5 100644 --- a/broker/src/main/java/io/moquette/broker/ISessionsRepository.java +++ b/broker/src/main/java/io/moquette/broker/ISessionsRepository.java @@ -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; @@ -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");