Bug 8922 - Evaluation of if-features is done regardless of ancestors
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / reactor / RootStatementContext.java
index 5832c5e7df4d083476b3ba8b668b8795a355b521..60db37533505a59a4884015a9cf1e8249f85354e 100644 (file)
@@ -268,4 +268,9 @@ public class RootStatementContext<A, D extends DeclaredStatement<A>, E extends E
     protected boolean isIgnoringConfig() {
         return false;
     }
+
+    @Override
+    protected boolean isParentSupportedByFeatures() {
+        return true;
+    }
 }