From a013b2936f83eb663606959286a8679c3ddfd68d Mon Sep 17 00:00:00 2001 From: Oleg Mitsura Date: Wed, 10 Jul 2019 15:48:53 -0400 Subject: Python executor parameters sorted again. Issue-ID: CCSDK-1468 Signed-off-by: Oleg Mitsura Change-Id: If8eb50fc2e8dfa084e486b02ace163eee1bfac77 --- .../org/onap/ccsdk/cds/controllerblueprints/core/CustomFunctions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ms/controllerblueprints') diff --git a/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/CustomFunctions.kt b/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/CustomFunctions.kt index ab54f566d..596ac79b3 100644 --- a/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/CustomFunctions.kt +++ b/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/CustomFunctions.kt @@ -135,7 +135,7 @@ fun JsonNode.returnNullIfMissing(): JsonNode? { */ fun JsonNode.rootFieldsToMap(): MutableMap { if (this is ObjectNode) { - val propertyMap: MutableMap = hashMapOf() + val propertyMap: MutableMap = linkedMapOf() this.fields().forEach { propertyMap[it.key] = it.value } -- cgit 1.2.3-korg