Merge "Merge this if statement with the enclosing one"
authorJonathan Gathman <jonathan.gathman@att.com>
Mon, 9 Sep 2019 12:40:35 +0000 (12:40 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 9 Sep 2019 12:40:35 +0000 (12:40 +0000)
auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Cred.java

index 83638cc..640efae 100644 (file)
@@ -271,11 +271,9 @@ public class Cred  {
         public void inc(int type, Date start, Date expires) {
             for (int i=0;i<dates.length-1;++i) {
                 if (start.before(dates[i])) {
-                    if (type==CredDAO.CERT_SHA256_RSA) {
-                        if (start.after(dates[i+1])) {
+                    if ((type==CredDAO.CERT_SHA256_RSA)&&(start.after(dates[i+1]))) {
                             ++x509Added[i];
-                        }
-                    }
+                         }
                     if (expires.after(dates[i])) {
                         switch(type) {
                             case CredDAO.RAW: