From 63d2c4f29b4a39084d314d446cf7009cd076a921 Mon Sep 17 00:00:00 2001 From: kuldipr Date: Tue, 17 May 2022 10:30:34 -0400 Subject: [PATCH] Fix inconsistency introduced during commit b4cbb0ee9 Issue-ID: CCSDK-3738 Signed-off-by: kuldipr Change-Id: I72ae642f3027fa3b4c8caa3105b2147ed654c159 --- .../designer/api/handler/BluePrintModelHandler.kt | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt index a5fcd322c..97fa7365f 100644 --- a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt +++ b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt @@ -160,7 +160,7 @@ open class BluePrintModelHandler( if (workFlow.inputs != null) { for ((k, v) in workFlow.inputs!!) { - addPropertyInfo(v, blueprintContext, wfRes) + addPropertyInfo(k, v, blueprintContext, wfRes) } } @@ -174,13 +174,6 @@ open class BluePrintModelHandler( return wfRes } - private fun addPropertyInfo(prop: PropertyDefinition, ctx: BluePrintContext, res: WorkFlowSpecResponse) { - addDataType(prop.type, ctx, res) - if (prop.entrySchema != null && prop.entrySchema!!.type != null) { - addDataType(prop.entrySchema!!.type, ctx, res) - } - } - private fun addPropertyInfo(propName: String, prop: PropertyDefinition, ctx: BluePrintContext, res: WorkFlowSpecResponse) { updatePropertyInfo(propName, prop, ctx, res) addDataType(prop.type, ctx, res) -- 2.16.6