From: ezhil Date: Thu, 15 Nov 2018 06:24:55 +0000 (+0530) Subject: Fixed sonar issue in PropertyOperator X-Git-Tag: 0.4.0~117^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=297c73a270941e118f4af7959b570052c4a1b1bd;p=ccsdk%2Fapps.git Fixed sonar issue in PropertyOperator Fixed return type issue in propertyOperator Issue-ID: CCSDK-685 Change-Id: I11c88c6667d95a6e71db9c58d9ad43931d63423d Signed-off-by: ezhil --- diff --git a/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/policy/PropertyOperator.java b/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/policy/PropertyOperator.java index 448ee075..8fd30120 100644 --- a/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/policy/PropertyOperator.java +++ b/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/policy/PropertyOperator.java @@ -128,8 +128,8 @@ public class PropertyOperator { if (mapped == null) { mapped = camelConverted(recipeItem); } - String value = applyJavaOperation(null, recipeItem, mapped); - return value; + //String value = applyJavaOperation(null, recipeItem, mapped); + return applyJavaOperation(null, recipeItem, mapped); } static String operationFunction(String operation) throws Exception {