diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-12-02 23:41:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-12-02 23:41:13 +0000 |
commit | 4263bdd43b1b74e503ccfe51886130f7dedf97b6 (patch) | |
tree | 1d67e326a522db403593e3d6693b38d44381dd92 /cadi | |
parent | d314247eb00c10dd2e7a08dcec52bc2eff8092be (diff) | |
parent | d16c6d57b3f0a6283960017444d7ffb22b4d583e (diff) |
Merge "Remove the declaration of thrown exception 'org.onap.aaf.misc.env.APIException', as it cannot be thrown from constructor's body"
Diffstat (limited to 'cadi')
-rw-r--r-- | cadi/aaf/src/main/java/org/onap/aaf/cadi/aaf/cert/AAFListedCertIdentity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cadi/aaf/src/main/java/org/onap/aaf/cadi/aaf/cert/AAFListedCertIdentity.java b/cadi/aaf/src/main/java/org/onap/aaf/cadi/aaf/cert/AAFListedCertIdentity.java index f3a45e5e..943e43ef 100644 --- a/cadi/aaf/src/main/java/org/onap/aaf/cadi/aaf/cert/AAFListedCertIdentity.java +++ b/cadi/aaf/src/main/java/org/onap/aaf/cadi/aaf/cert/AAFListedCertIdentity.java @@ -67,7 +67,7 @@ public class AAFListedCertIdentity implements CertIdentity { private static Map<String,Set<String>> trusted =null; - public AAFListedCertIdentity(Access access, AAFCon<?> aafcon) throws APIException { + public AAFListedCertIdentity(Access access, AAFCon<?> aafcon) { synchronized(AAFListedCertIdentity.class) { if (certIDs==null) { String cip = access.getProperty(Config.AAF_CERT_IDS, null); |