From 31fe53d3b89420d5c67d377a5bddd5c93aa891e7 Mon Sep 17 00:00:00 2001 From: TheArrayser Date: Sun, 25 Jun 2023 23:16:29 +0200 Subject: [PATCH] Remove useless line of code --- .../cringe_authenticator_library/impl/HOTP.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/cringe_studios/cringe_authenticator_library/impl/HOTP.java b/src/main/java/com/cringe_studios/cringe_authenticator_library/impl/HOTP.java index 340591a..3d94cc6 100644 --- a/src/main/java/com/cringe_studios/cringe_authenticator_library/impl/HOTP.java +++ b/src/main/java/com/cringe_studios/cringe_authenticator_library/impl/HOTP.java @@ -15,9 +15,9 @@ import com.cringe_studios.cringe_authenticator_library.OTPType; //https://datatracker.ietf.org/doc/html/rfc4226 public class HOTP extends OTP { - protected static final int[] DIGITS_POWER + //protected static final int[] DIGITS_POWER // 0 1 2 3 4 5 6 7 8 - = { 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000 }; + // = { 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000 }; public HOTP(String secret, OTPAlgorithm algorithm, int digits, long counter, long periodInSeconds, boolean checksum) { super(OTPType.HOTP, secret, algorithm, digits, counter, periodInSeconds, checksum);