From 0f1f9b1f892f5927fead4cedd863218bd648662d Mon Sep 17 00:00:00 2001 From: Jegadeesh Babu Date: Wed, 20 Feb 2019 18:09:40 +0530 Subject: [PATCH] Seperated assignment statement from expression Sonar bug fix Issue-ID: APPC-1468 Change-Id: I2ff7e01516cf7328357d2a48643947c782ce4fd9 Signed-off-by: Jegadeesh Babu --- .../main/java/org/onap/appc/data/services/db/DGGeneralDBService.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/appc-config/appc-data-services/provider/src/main/java/org/onap/appc/data/services/db/DGGeneralDBService.java b/appc-config/appc-data-services/provider/src/main/java/org/onap/appc/data/services/db/DGGeneralDBService.java index b7b52f717..83d47ba30 100644 --- a/appc-config/appc-data-services/provider/src/main/java/org/onap/appc/data/services/db/DGGeneralDBService.java +++ b/appc-config/appc-data-services/provider/src/main/java/org/onap/appc/data/services/db/DGGeneralDBService.java @@ -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 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); } } -- 2.16.6