BUG-4688: Eliminate Module.DEFAULT_SEMANTIC_VERSION
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / MustStatementImpl.java
index 4d85e523bbff7bd3127da493575fd2232e5987a3..80ad665eba304d5f3be2f6a3196ff438b27fe827 100644 (file)
@@ -17,10 +17,10 @@ import org.opendaylight.yangtools.yang.model.api.stmt.ErrorAppTagStatement;
 import org.opendaylight.yangtools.yang.model.api.stmt.ErrorMessageStatement;
 import org.opendaylight.yangtools.yang.model.api.stmt.MustStatement;
 import org.opendaylight.yangtools.yang.model.api.stmt.ReferenceStatement;
-import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator;
 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
+import org.opendaylight.yangtools.yang.parser.spi.meta.SubstatementValidator;
 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.MustEffectiveStatementImpl;
 
 public class MustStatementImpl extends AbstractDeclaredStatement<RevisionAwareXPath> implements MustStatement {
@@ -36,8 +36,8 @@ public class MustStatementImpl extends AbstractDeclaredStatement<RevisionAwareXP
         super(context);
     }
 
-    public static class Definition extends
-            AbstractStatementSupport<RevisionAwareXPath, MustStatement, EffectiveStatement<RevisionAwareXPath, MustStatement>> {
+    public static class Definition extends AbstractStatementSupport<RevisionAwareXPath, MustStatement,
+            EffectiveStatement<RevisionAwareXPath, MustStatement>> {
 
         public Definition() {
             super(YangStmtMapping.MUST);
@@ -55,7 +55,8 @@ public class MustStatementImpl extends AbstractDeclaredStatement<RevisionAwareXP
 
         @Override
         public EffectiveStatement<RevisionAwareXPath, MustStatement> createEffective(
-                final StmtContext<RevisionAwareXPath, MustStatement, EffectiveStatement<RevisionAwareXPath, MustStatement>> ctx) {
+                final StmtContext<RevisionAwareXPath, MustStatement,
+                EffectiveStatement<RevisionAwareXPath, MustStatement>> ctx) {
             return new MustEffectiveStatementImpl(ctx);
         }