From: ezhil Date: Thu, 15 Nov 2018 13:50:50 +0000 (+0530) Subject: Fixed Sonar issue in RecipeParser X-Git-Tag: 0.4.0~101^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F80%2F72780%2F2;p=ccsdk%2Fapps.git Fixed Sonar issue in RecipeParser Declared private constructor Issue-ID: CCSDK-689 Change-Id: Ib4f491b4579c8eb0091af0144d250c397fb44b3f Signed-off-by: ezhil --- diff --git a/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/policy/RecipeParser.java b/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/policy/RecipeParser.java index d9eda66a..e808b8c2 100644 --- a/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/policy/RecipeParser.java +++ b/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/policy/RecipeParser.java @@ -37,6 +37,9 @@ public class RecipeParser { * @return a list containing the items in the recipe * @throws Exception all exceptions are propagated */ + private RecipeParser(){ + + } public static List parseRecipe(PolicyParameters policyParams, String recipe) throws Exception { String separatorAll = policyParams.getRecipeSeparator(); if (separatorAll == null) {