aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/csr/Values.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/model/csr/Values.java')
-rw-r--r--src/main/model/csr/Values.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/model/csr/Values.java b/src/main/model/csr/Values.java
index 5c1e212..f461686 100644
--- a/src/main/model/csr/Values.java
+++ b/src/main/model/csr/Values.java
@@ -36,13 +36,13 @@ public class Values extends ASN1Object {
/**
* EFFECT: Parse the list from input DER bytes. For details on parsing, refer to {@link ASN1Object}.
- * Throws {@link ParseException} for invalid input.
+ * Throws {@link ParseException} for invalid input.
* MODIFIES: this, encoded
*/
public Values(BytesReader encoded, boolean hasParentTag) throws ParseException {
super(encoded, hasParentTag);
final List<ASN1Object> list = new ArrayList<>();
- for (int i = 0; i < getLength();) {
+ for (int i = 0; i < getLength(); ) {
int index = encoded.getIndex();
final ASN1Object value = ASN1Object.parse(encoded, false);
list.add(value);