Next round of yang-parser-impl checkstyle fixes
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / YangVersionEffectiveStatementImpl.java
index 32479687a131175641c4da7faa7f40aaa55b213b..7cb01b6f08bb5464eccf3d3b99785a0a3ef52b7a 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
@@ -7,16 +7,13 @@
  */
 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
 
+import org.opendaylight.yangtools.yang.common.YangVersion;
 import org.opendaylight.yangtools.yang.model.api.stmt.YangVersionStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class YangVersionEffectiveStatementImpl extends
-        EffectiveStatementBase<String, YangVersionStatement> {
-
-    public YangVersionEffectiveStatementImpl(
-            StmtContext<String, YangVersionStatement, ?> ctx) {
+public final class YangVersionEffectiveStatementImpl
+        extends DeclaredEffectiveStatementBase<YangVersion, YangVersionStatement> {
+    public YangVersionEffectiveStatementImpl(final StmtContext<YangVersion, YangVersionStatement, ?> ctx) {
         super(ctx);
-
     }
-
 }
\ No newline at end of file