From 28fa18278c1f3a87722d5e8b78f581526a30bb38 Mon Sep 17 00:00:00 2001 From: Yuuta Liang Date: Sat, 14 Oct 2023 05:35:17 +0800 Subject: Fix lint Signed-off-by: Yuuta Liang --- src/main/model/asn1/BitString.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/model/asn1/BitString.java') diff --git a/src/main/model/asn1/BitString.java b/src/main/model/asn1/BitString.java index 0561f24..3b4c32e 100644 --- a/src/main/model/asn1/BitString.java +++ b/src/main/model/asn1/BitString.java @@ -22,7 +22,7 @@ import java.math.BigInteger; * 0b 00000110 01101110 01011101 11000000 * ^ 6 ^ ^ Original Number ^^Pad^ * - * + *

* BIT STRING has nothing to do with encoding bytes as printable strings (base10 or base16 or ASCII). */ public class BitString extends ASN1Object { @@ -48,10 +48,10 @@ public class BitString extends ASN1Object { /** * EFFECT: Parse the input DER. - * Throws {@link ParseException} if the input is invalid: - * - Unused is not in 0 <= unused < 8 - * - The last byte does not have its lowest $unused bits zero - * - Other issues found according to {@link ASN1Object} + * Throws {@link ParseException} if the input is invalid: + * - Unused is not in 0 <= unused < 8 + * - The last byte does not have its lowest $unused bits zero + * - Other issues found according to {@link ASN1Object} */ public BitString(BytesReader encoded, boolean hasParentTag) throws ParseException { super(encoded, hasParentTag); -- cgit v1.2.3