aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/asn1/Int.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/model/asn1/Int.java')
-rw-r--r--src/main/model/asn1/Int.java10
1 files changed, 5 insertions, 5 deletions
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();