diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2018-09-18 11:43:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-18 11:43:17 +0000 |
commit | 362f628e6c4029a39bf9cc179443099cd1e7f0fe (patch) | |
tree | f0a3c378cd6e5286ff7a828040879302a5f69567 | |
parent | bf9c76a0b576e71dbc3423803f6c802c4921cfd6 (diff) | |
parent | c9c98ec078856ce22ba6a701a83d5457fc15b82e (diff) |
Merge "X509andChain.java: Fixed sonar issues"
-rw-r--r-- | auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/X509andChain.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/X509andChain.java b/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/X509andChain.java index 7eb88bd2..9a0e1c0d 100644 --- a/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/X509andChain.java +++ b/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/X509andChain.java @@ -45,12 +45,12 @@ public class X509andChain { trustChain = null; } - public X509andChain(X509Certificate cert, String[] tc) throws IOException, CertException { + public X509andChain(X509Certificate cert, String[] tc) { this.cert = cert; trustChain=tc; } - public X509andChain(X509Certificate cert, List<String> chain) throws IOException, CertException { + public X509andChain(X509Certificate cert, List<String> chain) { this.cert = cert; trustChain = new String[chain.size()+1]; chain.toArray(trustChain); |