Fixed Sonar issue in RecipeParser 80/72780/2
authorezhil <ezhrajam@in.ibm.com>
Thu, 15 Nov 2018 13:50:50 +0000 (19:20 +0530)
committerEzhilarasi R <ezhrajam@in.ibm.com>
Mon, 19 Nov 2018 07:07:38 +0000 (07:07 +0000)
Declared private constructor
Issue-ID: CCSDK-689
Change-Id: Ib4f491b4579c8eb0091af0144d250c397fb44b3f
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/policy/RecipeParser.java

index d9eda66..e808b8c 100644 (file)
@@ -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<String> parseRecipe(PolicyParameters policyParams, String recipe) throws Exception {
         String separatorAll = policyParams.getRecipeSeparator();
         if (separatorAll == null) {