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/PrintableString.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/model/asn1/PrintableString.java') diff --git a/src/main/model/asn1/PrintableString.java b/src/main/model/asn1/PrintableString.java index 73e33a6..b17ecbe 100644 --- a/src/main/model/asn1/PrintableString.java +++ b/src/main/model/asn1/PrintableString.java @@ -17,7 +17,7 @@ public class PrintableString extends ASN1String { /** * EFFECTS: Constructs with the given string. - * Throws {@link ParseException} if the given string is illegal (contains chars out of the PrintableString set). + * Throws {@link ParseException} if the given string is illegal (contains chars out of the PrintableString set). * REQUIRES: For the requirements of tag and parentTag, consult {@link ASN1Object}. */ public PrintableString(Tag tag, Tag parentTag, String rawString) throws ParseException { @@ -27,9 +27,9 @@ public class PrintableString 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: - * - Early EOF and other cases in {@link ASN1Object} - * - Illegal string: Contains non-printable chars + * Throws {@link ParseException} if the encoded data is invalid: + * - Early EOF and other cases in {@link ASN1Object} + * - Illegal string: Contains non-printable chars * MODIFIES: this, encoded */ public PrintableString(BytesReader encoded, boolean hasParentTag) throws ParseException { -- cgit v1.2.3