Skip to content

Commit

Permalink
Fixed problem with UserNotice on CertificatePolicies extension (issue #…
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikramer committed Jan 13, 2024
1 parent bd7b66d commit a7f95d1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,10 +288,10 @@ private void okPressed() {
NoticeReference noticeReference = null;
if (!organizationString.isEmpty()) { // If organization is present then so is al of notice reference

Vector<ASN1Integer> noticeNumbers = new Vector<>();
Vector<Integer> noticeNumbers = new Vector<>();

for (int noticeNumber : noticeNumberInts) {
noticeNumbers.add(new ASN1Integer(noticeNumber));
noticeNumbers.add(new Integer(noticeNumber));
}

noticeReference = new NoticeReference(organizationString, noticeNumbers);
Expand Down

0 comments on commit a7f95d1

Please sign in to comment.