Hide StatementContextBase
[yangtools.git] / parser / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / augment / AugmentImplicitHandlingNamespace.java
index fa4b706f42714956e668b0c536fa867a06b093d6..a37f2b165d6f56cf28199fe4a9ee48c031c67948 100644 (file)
@@ -12,16 +12,14 @@ import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.yangtools.yang.common.Empty;
 import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour;
 import org.opendaylight.yangtools.yang.parser.spi.meta.ParserNamespace;
-import org.opendaylight.yangtools.yang.parser.stmt.reactor.StatementContextBase;
+import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext.Mutable;
 
 /**
  * Helper namespace for attaching target information to augmentation statements. This is then used to ensure that
  * the effective augment has correct implicit statements created.
  */
 @Beta
-public interface AugmentImplicitHandlingNamespace
-        extends ParserNamespace<Empty, StatementContextBase<?, ?, ?>> {
-    NamespaceBehaviour<Empty, StatementContextBase<?, ?, ?>, @NonNull AugmentImplicitHandlingNamespace>
+public interface AugmentImplicitHandlingNamespace extends ParserNamespace<Empty, Mutable<?, ?, ?>> {
+    NamespaceBehaviour<Empty, Mutable<?, ?, ?>, @NonNull AugmentImplicitHandlingNamespace>
         BEHAVIOUR = NamespaceBehaviour.statementLocal(AugmentImplicitHandlingNamespace.class);
-
 }