From 76c38f09e566b09c9879bdd624b6919b6840beed Mon Sep 17 00:00:00 2001 From: Ram Krishna Verma Date: Wed, 7 Sep 2022 11:35:58 -0400 Subject: Fix bug in json schema helper Fixing a bug in json schema helper where it tries to pass through JsonElement and not attempting to compare the incoming object with schema. Issue-ID: POLICY-4353 Change-Id: I0ec8f6a8ec3723bca796e8cf43b6ec9164fbf582 Signed-off-by: Ram Krishna Verma --- .../onap/policy/apex/plugins/context/schema/json/JsonSchemaHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/plugins-context/plugins-context-schema/plugins-context-schema-json/src/main/java/org/onap/policy/apex/plugins/context/schema/json/JsonSchemaHelper.java b/plugins/plugins-context/plugins-context-schema/plugins-context-schema-json/src/main/java/org/onap/policy/apex/plugins/context/schema/json/JsonSchemaHelper.java index 4896e5d4a..02aea150c 100644 --- a/plugins/plugins-context/plugins-context-schema/plugins-context-schema-json/src/main/java/org/onap/policy/apex/plugins/context/schema/json/JsonSchemaHelper.java +++ b/plugins/plugins-context/plugins-context-schema/plugins-context-schema-json/src/main/java/org/onap/policy/apex/plugins/context/schema/json/JsonSchemaHelper.java @@ -117,6 +117,6 @@ public class JsonSchemaHelper extends AbstractSchemaHelper { * @return true if it's a straight pass through */ private boolean passThroughObject(final Object object) { - return (object instanceof JsonElement || object instanceof Map || object instanceof List); + return (object instanceof Map || object instanceof List); } } -- cgit 1.2.3-korg