Spring boot, Kotlin version upgrades
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / blueprints / blueprint-core / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / core / service / BluePrintRuntimeService.kt
index d68d680..53af9f7 100644 (file)
@@ -786,7 +786,7 @@ open class DefaultBluePrintRuntimeService(private var id: String, private var bl
             val key = it.replace(path, "")
             if (keys.contains(key)) {
                 val value = store[it] as JsonNode
-                jsonNode.set(key, value)
+                jsonNode.set<JsonNode>(key, value)
             }
         }
         return jsonNode