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/UtcTime.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/model/asn1/UtcTime.java') diff --git a/src/main/model/asn1/UtcTime.java b/src/main/model/asn1/UtcTime.java index 3acf524..7fa93d1 100644 --- a/src/main/model/asn1/UtcTime.java +++ b/src/main/model/asn1/UtcTime.java @@ -57,9 +57,9 @@ public class UtcTime extends ASN1Time { /** * EFFECT: Parse the given DER input. Time will be assumed to be in UTC. - * Throws {@link ParseException} if invalid: - * - The time is not in the string format specified in class specification - * - Other invalid input is found. See {@link ASN1Object} for more details on parsing + * Throws {@link ParseException} if invalid: + * - The time is not in the string format specified in class specification + * - Other invalid input is found. See {@link ASN1Object} for more details on parsing */ public UtcTime(BytesReader encoded, boolean hasParentTag) throws ParseException { super(encoded, hasParentTag); @@ -67,7 +67,7 @@ public class UtcTime extends ASN1Time { /** * EFFECT: Parse the string into time, in the format specified in class specification. - * Throws {@link ParseException} if the input is malformed. + * Throws {@link ParseException} if the input is malformed. */ @Override public ZonedDateTime toDate(String str) throws ParseException { -- cgit v1.2.3