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/IA5String.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/model/asn1/IA5String.java') diff --git a/src/main/model/asn1/IA5String.java b/src/main/model/asn1/IA5String.java index ea5cf91..f8e9800 100644 --- a/src/main/model/asn1/IA5String.java +++ b/src/main/model/asn1/IA5String.java @@ -18,7 +18,7 @@ public class IA5String extends ASN1String { /** * EFFECTS: Constructs an IA5String with the given tag and string. - * Throws {@link ParseException} if the string is invalid. It must only contain T.50 chars. + * Throws {@link ParseException} if the string is invalid. It must only contain T.50 chars. * REQUIRES: For the requirements of tag and parentTag, consult {@link ASN1Object}. */ public IA5String(Tag tag, Tag parentTag, String string) throws ParseException { @@ -28,10 +28,10 @@ public class IA5String extends ASN1String { /** * EFFECTS: Parse from user input. Tags are parsed as-per {@link ASN1Object}. The value will be parsed as UTF-8 big * endian. - * Throws {@link ParseException} if the encoded data is invalid: - * - Illegal string (containing non-T.50 chars) - * - Early EOF - * - Other cases in {@link ASN1Object} + * Throws {@link ParseException} if the encoded data is invalid: + * - Illegal string (containing non-T.50 chars) + * - Early EOF + * - Other cases in {@link ASN1Object} * MODIFIES: this, encoded */ public IA5String(BytesReader encoded, boolean hasParentTag) throws ParseException { -- cgit v1.2.3