Fixed sonar issue in this file
Issue-ID: AAI-2510
Change-Id: I03dc84d005caad5a3181fa89bd9a750c31153ba2
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
  * org.onap.aai
  * ================================================================================
  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Modification Copyright © 2019 IBM
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
     }
 
     private String decodePasswordsInString(String input) {
-        if (input == null) return null;
+        if (input == null) {
+            return null;
+        };
         StringBuffer output = new StringBuffer();
         Matcher matcher = decodePasswordPattern.matcher(input);
         while (matcher.find()) {