Skip to content

Commit 671f84b

Browse files
committedNov 8, 2022
8296143: CertAttrSet's set/get mechanism is not type-safe
Reviewed-by: mullan
1 parent d04d656 commit 671f84b

File tree

66 files changed

+632
-2891
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+632
-2891
lines changed
 

‎src/java.base/share/classes/java/security/cert/CertificateRevokedException.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public Date getInvalidityDate() {
155155
return null;
156156
} else {
157157
try {
158-
Date invalidity = InvalidityDateExtension.toImpl(ext).get("DATE");
158+
Date invalidity = InvalidityDateExtension.toImpl(ext).getDate();
159159
return new Date(invalidity.getTime());
160160
} catch (IOException ioe) {
161161
return null;

‎src/java.base/share/classes/java/security/cert/X509CRLSelector.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -323,7 +323,7 @@ private static HashSet<Object> cloneAndCheckIssuerNames(Collection<?> names)
323323
else
324324
namesCopy.add(nameObject);
325325
}
326-
return(namesCopy);
326+
return namesCopy;
327327
}
328328

329329
/**
@@ -630,7 +630,7 @@ public boolean match(CRL crl) {
630630
byte[] encoded = in.getOctetString();
631631
CRLNumberExtension crlNumExt =
632632
new CRLNumberExtension(Boolean.FALSE, encoded);
633-
crlNum = crlNumExt.get(CRLNumberExtension.NUMBER);
633+
crlNum = crlNumExt.getCrlNumber();
634634
} catch (IOException ex) {
635635
if (debug != null) {
636636
debug.println("X509CRLSelector.match: exception in "

0 commit comments

Comments
 (0)
Please sign in to comment.