BUG-6972: eliminate StmtContext.getOrder()
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / RequireInstanceEffectiveStatementImpl.java
index b89b443710f4b30517a0d7846023532571ba763d..e9b861ba2c196bb539655e240ba86b598d3c09f1 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
@@ -10,13 +10,9 @@ package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
 import org.opendaylight.yangtools.yang.model.api.stmt.RequireInstanceStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class RequireInstanceEffectiveStatementImpl extends
-        EffectiveStatementBase<Boolean, RequireInstanceStatement> {
-
-    public RequireInstanceEffectiveStatementImpl(
-            StmtContext<Boolean, RequireInstanceStatement, ?> ctx) {
+public final class RequireInstanceEffectiveStatementImpl extends DeclaredEffectiveStatementBase<Boolean,
+        RequireInstanceStatement> {
+    public RequireInstanceEffectiveStatementImpl(final StmtContext<Boolean, RequireInstanceStatement, ?> ctx) {
         super(ctx);
-
     }
-
 }
\ No newline at end of file