From 22f7043dc371d1b247b77cc355f8a941b087636a Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Thu, 14 Jan 2021 19:15:47 +0100 Subject: [PATCH] AnyxmlSchemaLocationNamespace should be statement-local Having this tree-scoped is wrong, correct that mistake. Change-Id: I7b710a501ca2b564597938b7d32b0be98104b4ff Signed-off-by: Robert Varga (cherry picked from commit 80ef652b35c8c19478927b368e120934fd647a86) --- .../yangtools/odlext/parser/AnyxmlSchemaLocationNamespace.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yang/odlext-parser-support/src/main/java/org/opendaylight/yangtools/odlext/parser/AnyxmlSchemaLocationNamespace.java b/yang/odlext-parser-support/src/main/java/org/opendaylight/yangtools/odlext/parser/AnyxmlSchemaLocationNamespace.java index e780c9d427..8a3721d660 100644 --- a/yang/odlext-parser-support/src/main/java/org/opendaylight/yangtools/odlext/parser/AnyxmlSchemaLocationNamespace.java +++ b/yang/odlext-parser-support/src/main/java/org/opendaylight/yangtools/odlext/parser/AnyxmlSchemaLocationNamespace.java @@ -24,5 +24,5 @@ public interface AnyxmlSchemaLocationNamespace extends IdentifierNamespace, @NonNull AnyxmlSchemaLocationNamespace> BEHAVIOUR = - NamespaceBehaviour.treeScoped(AnyxmlSchemaLocationNamespace.class); + NamespaceBehaviour.statementLocal(AnyxmlSchemaLocationNamespace.class); } -- 2.36.6