CMService.java - Merge the if statement with the existing one 52/97352/1
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Mon, 21 Oct 2019 07:29:15 +0000 (12:59 +0530)
committerThugutla sailakshmi <tsaila10@in.ibm.com>
Mon, 21 Oct 2019 07:37:44 +0000 (13:07 +0530)
Issue-ID: AAF-876
Change-Id: I5cf734a6bce2afb0d4e24456cb037bb2421d7f96
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/service/CMService.java

index 8810943..c85b4ca 100644 (file)
@@ -3,7 +3,7 @@
  * org.onap.aaf
  * ===========================================================================
  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
- * Modifications Copyright (C) 2018 IBM.
+ * Modifications Copyright (C) 2019 IBM.
  * ===========================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -334,12 +334,10 @@ public class CMService {
                             trans.error().log("CMService var primary is null");
                         } else {
                             String fg = fqdns.get(i);
-                            if (fg!=null && primary!=null && fg.equals(primary.getHostName())) {
-                                if (i != 0) {
+                            if ((fg!=null && primary!=null && fg.equals(primary.getHostName()))&&(i != 0)) {
                                     String tmp = fqdns.get(0);
                                     fqdns.set(0, primary.getHostName());
                                     fqdns.set(i, tmp);
-                                }
                             }
                         }
                     }