aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/asn1/GeneralizedTime.java
diff options
context:
space:
mode:
authorYuuta Liang <yuutaw@students.cs.ubc.ca>2023-10-14 05:35:17 +0800
committerYuuta Liang <yuutaw@students.cs.ubc.ca>2023-10-14 05:35:17 +0800
commit28fa18278c1f3a87722d5e8b78f581526a30bb38 (patch)
tree2f23f6e2e222a78f40809ec37e8b28a29cba3d3c /src/main/model/asn1/GeneralizedTime.java
parent0bcc057e741af3fbc108f42b75f9d42f48f6a51e (diff)
downloadjca-28fa18278c1f3a87722d5e8b78f581526a30bb38.tar
jca-28fa18278c1f3a87722d5e8b78f581526a30bb38.tar.gz
jca-28fa18278c1f3a87722d5e8b78f581526a30bb38.tar.bz2
jca-28fa18278c1f3a87722d5e8b78f581526a30bb38.zip
Fix lint
Signed-off-by: Yuuta Liang <yuutaw@students.cs.ubc.ca>
Diffstat (limited to 'src/main/model/asn1/GeneralizedTime.java')
-rw-r--r--src/main/model/asn1/GeneralizedTime.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/model/asn1/GeneralizedTime.java b/src/main/model/asn1/GeneralizedTime.java
index 385642d..5482906 100644
--- a/src/main/model/asn1/GeneralizedTime.java
+++ b/src/main/model/asn1/GeneralizedTime.java
@@ -56,9 +56,9 @@ public class GeneralizedTime extends ASN1Time {
/**
* EFFECT: Parse the given DER input. Time will be assumed to be in UTC.
- * Throws {@link ParseException}:
- * - 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}:
+ * - 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 GeneralizedTime(BytesReader encoded, boolean hasParentTag) throws ParseException {
super(encoded, hasParentTag);
@@ -66,7 +66,7 @@ public class GeneralizedTime 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 {