From 60211ae53f8891fe54d2e24cb56f8f2dd642c48a Mon Sep 17 00:00:00 2001 From: Loganathan Sekar Date: Thu, 8 Feb 2024 21:42:20 +0530 Subject: [PATCH] Minor jdoc update Signed-off-by: Loganathan Sekar --- .../authentication/common/service/integration/OTPManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentication/authentication-common/src/main/java/io/mosip/authentication/common/service/integration/OTPManager.java b/authentication/authentication-common/src/main/java/io/mosip/authentication/common/service/integration/OTPManager.java index e5f6a9415e8..77a4ab1b09d 100644 --- a/authentication/authentication-common/src/main/java/io/mosip/authentication/common/service/integration/OTPManager.java +++ b/authentication/authentication-common/src/main/java/io/mosip/authentication/common/service/integration/OTPManager.java @@ -48,6 +48,7 @@ @Component public class OTPManager { + /** The Constant QUERIED_STATUS_CODES. */ private static final List QUERIED_STATUS_CODES = List.of(IdAuthCommonConstants.ACTIVE_STATUS, IdAuthCommonConstants.FROZEN); /** The Constant OTP_EXPIRED. */ @@ -254,7 +255,6 @@ public boolean validateOtp(String pinValue, String otpKey, String individualId) * Require otp not frozen. * * @param otpEntity the otp entity - * @param save * @throws IdAuthenticationBusinessException the id authentication business exception */ private void requireOtpNotFrozen(OtpTransaction otpEntity) throws IdAuthenticationBusinessException {