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/Int.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/model/asn1/Int.java') diff --git a/src/main/model/asn1/Int.java b/src/main/model/asn1/Int.java index 4eeeedf..87f1505 100644 --- a/src/main/model/asn1/Int.java +++ b/src/main/model/asn1/Int.java @@ -41,10 +41,10 @@ public class Int extends ASN1Object { /** * EFFECTS: Parse input and get the int value. Tags are parsed in {@link ASN1Object}. - * Throws {@link ParseException} if encoded value are invalid: - * - Early EOF (not enough bytes) - * - Zero bytes length - * - Other issues denoted in {@link ASN1Object} + * Throws {@link ParseException} if encoded value are invalid: + * - Early EOF (not enough bytes) + * - Zero bytes length + * - Other issues denoted in {@link ASN1Object} * MODIFIES: this, encoded */ public Int(BytesReader encoded, boolean hasParentTag) throws ParseException { @@ -78,7 +78,7 @@ public class Int extends ASN1Object { /** * EFFECTS: Get the value in long. - * Throws {@link ArithmeticException} if the value is too large for long. + * Throws {@link ArithmeticException} if the value is too large for long. */ public long getLong() throws ArithmeticException { return value.longValueExact(); -- cgit v1.2.3