Collection syntax change because of Sonar
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / taf / cert / X509Taf.java
index dc07bb9..7b7f2db 100644 (file)
@@ -86,7 +86,7 @@ public class X509Taf implements HttpTaf {
                        throw new CadiException("X509Taf requires Environment ("+Config.AAF_ENV+") to be set.");
                }
 //             this.lur = lur;
-               this.cadiIssuers = new ArrayList<String>();
+               this.cadiIssuers = new ArrayList<>();
                for(String ci : access.getProperty(Config.CADI_X509_ISSUERS, "").split(":")) {
                        access.printf(Level.INIT, "Trusting Identity for Certificates signed by \"%s\"",ci);
                        cadiIssuers.add(ci);