X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-parser-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fparser%2Fstmt%2Frfc6020%2Feffective%2FEffectiveSchemaContext.java;h=c76b86f82809415f99e632ddbc5798d118c2c9a0;hb=e99bf7da4cf4f715e6d899a8c41a8df2853e3055;hp=d9acb0103cb9cd246ab2b1844efed3831fb0e874;hpb=5f4fc14e4e2be49a7aab7e60fb155f717ef49484;p=yangtools.git diff --git a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/rfc6020/effective/EffectiveSchemaContext.java b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/rfc6020/effective/EffectiveSchemaContext.java index d9acb0103c..c76b86f828 100644 --- a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/rfc6020/effective/EffectiveSchemaContext.java +++ b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/rfc6020/effective/EffectiveSchemaContext.java @@ -29,14 +29,14 @@ import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; import org.opendaylight.yangtools.yang.parser.builder.impl.ModuleIdentifierImpl; import org.opendaylight.yangtools.yang.parser.util.ModuleDependencySort; -public class EffectiveSchemaContext extends AbstractEffectiveSchemaContext { +public final class EffectiveSchemaContext extends AbstractEffectiveSchemaContext { private final SetMultimap namespaceToModules; private final SetMultimap nameToModules; private final Set modules; - private final ImmutableList> rootDeclaredStatements; - private final ImmutableList> rootEffectiveStatements; + private final List> rootDeclaredStatements; + private final List> rootEffectiveStatements; private final Set moduleIdentifiers; public EffectiveSchemaContext(final List> rootDeclaredStatements, @@ -112,11 +112,11 @@ public class EffectiveSchemaContext extends AbstractEffectiveSchemaContext { return new EffectiveSchemaContext(modules); } - public ImmutableList> getRootDeclaredStatements() { + public List> getRootDeclaredStatements() { return rootDeclaredStatements; } - public ImmutableList> getRootEffectiveStatements() { + public List> getRootEffectiveStatements() { return rootEffectiveStatements; }