Bug 4412: New yang parser effective statements cleanup
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / FractionDigitsEffectiveStatementImpl.java
index 5f33bef2009344d3bd707c3c36e5431e934f5273..77f6e28e6f5f6a3c237ad8b772eddf8bc9932443 100644 (file)
@@ -10,13 +10,8 @@ package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective;
 import org.opendaylight.yangtools.yang.model.api.stmt.FractionDigitsStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 
-public class FractionDigitsEffectiveStatementImpl extends
-        EffectiveStatementBase<String, FractionDigitsStatement> {
-
-    public FractionDigitsEffectiveStatementImpl(
-            StmtContext<String, FractionDigitsStatement, ?> ctx) {
+public final class FractionDigitsEffectiveStatementImpl extends EffectiveStatementBase<Integer, FractionDigitsStatement> {
+    public FractionDigitsEffectiveStatementImpl(final StmtContext<Integer, FractionDigitsStatement, ?> ctx) {
         super(ctx);
-
     }
-
 }
\ No newline at end of file