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/ASN1Time.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/model/asn1/ASN1Time.java') diff --git a/src/main/model/asn1/ASN1Time.java b/src/main/model/asn1/ASN1Time.java index 08f861e..8f386f5 100644 --- a/src/main/model/asn1/ASN1Time.java +++ b/src/main/model/asn1/ASN1Time.java @@ -29,10 +29,10 @@ public abstract class ASN1Time extends ASN1Object { /** * EFFECTS: Parse and decode DER bytes into the corresponding time type. For more info on decoding, take a look at * {@link ASN1Object}. - * Throws {@link ParseException} if the input is invalid: - * - Invalid date format - * - Zero length - * - Other circumstances (e.g., early EOF) as seen in {@link ASN1Object} + * Throws {@link ParseException} if the input is invalid: + * - Invalid date format + * - Zero length + * - Other circumstances (e.g., early EOF) as seen in {@link ASN1Object} * MODIFIES: this, encoded */ public ASN1Time(BytesReader encoded, boolean hasParentTag) throws ParseException { @@ -50,7 +50,7 @@ public abstract class ASN1Time extends ASN1Object { /** * EFFECTS: Convert the given string into corresponding timestamp. - * Throws {@link ParseException} if the time is malformed. + * Throws {@link ParseException} if the time is malformed. */ public abstract ZonedDateTime toDate(String str) throws ParseException; -- cgit v1.2.3