Bug 4079: Unable to compile pattern defined in module
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / MandatoryEffectiveStatementImpl.java
index 408c97fff451ac8e2a8521f69d8e1259fecab1b8..ea0f20bc69bfb580061fd60e747339519bee3d76 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.MandatoryStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class MandatoryEffectiveStatementImpl extends
-        EffectiveStatementBase<Boolean, MandatoryStatement> {
-
-    public MandatoryEffectiveStatementImpl(
-            StmtContext<Boolean, MandatoryStatement, ?> ctx) {
+public final class MandatoryEffectiveStatementImpl extends DeclaredEffectiveStatementBase<Boolean, MandatoryStatement>
+    implements MandatoryEffectiveStatement {
+    public MandatoryEffectiveStatementImpl(final StmtContext<Boolean, MandatoryStatement, ?> ctx) {
         super(ctx);
-
     }
-
-}
\ No newline at end of file
+}