Seperated assignment statement from expression
[appc.git] / appc-config / appc-data-services / provider / src / main / java / org / onap / appc / data / services / db / DGGeneralDBService.java
index b7b52f7..83d47ba 100644 (file)
@@ -6,6 +6,8 @@
  * ================================================================================
  * Copyright (C) 2017 Amdocs
  * =============================================================================
+ * 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.
  * You may obtain a copy of the License at
@@ -241,7 +243,8 @@ public class DGGeneralDBService {
 
             Set<String> keySet = ctx.getAttributeKeySet();
             for (String key : keySet) {
-                if (StringUtils.isNotBlank(key) && key.startsWith(prefix = ".")) {
+              //By default, context property prefixed with dot.
+                if (StringUtils.isNotBlank(key) && key.startsWith(".")) {
                     ctx.getAttributeKeySet().remove(key);
                 }
             }