From 65fec643907871f80aba674eb1acb30bdad6c89e Mon Sep 17 00:00:00 2001 From: xuegao Date: Fri, 23 Oct 2020 14:24:09 +0200 Subject: Fix workflow issue Fix the workflow issue where workflow is not packed into csar, if added after a checkout. Issue-ID: SDC-3311 Signed-off-by: xuegao Change-Id: I673a8127087fb31eddd8badae8f3bd400ef8cb3e --- catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java b/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java index 61068f26a8..123e1b18ad 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java @@ -1586,10 +1586,6 @@ public class CsarUtils { if (!deploymentArtifactsByType.isEmpty() ){ artifactsInfo.addArtifactsToGroup(ArtifactGroupTypeEnum.DEPLOYMENT, deploymentArtifactsByType); } - //Add component interface operation artifacts - if(MapUtils.isNotEmpty(interfaceOperationArtifacts)) { - artifactsInfo.addArtifactsToGroup(ArtifactGroupTypeEnum.DEPLOYMENT, interfaceOperationArtifactsByType); - } return artifactsInfo; } -- cgit 1.2.3-korg