return this expression instead of assigning it to the temporary variable
Issue-ID: CCSDK-1536
Change-Id: Ib0e7970585978e84189b5c71f2fd9c6c6c74eab8
Signed-off-by: Thugutla Sailakshmi <tsaila10@in.ibm.com>
*
* =================================================================================
* Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
+ *
+ * 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.
String listVal = getProperty(key);
if (listVal == null)
return null;
- String[] vals = listVal.split("\\s*,\\s*");
- return vals;
+
+ return listVal.split("\\s*,\\s*");
}
/**