BUG-8043: correct RangeConstraint definition
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / FractionDigitsEffectiveStatementImpl.java
index 5f33bef2009344d3bd707c3c36e5431e934f5273..a2f26f68946a34d02877754a5439fe9b45ad6df3 100644 (file)
@@ -10,13 +10,9 @@ 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 DeclaredEffectiveStatementBase<Integer, FractionDigitsStatement> {
+    public FractionDigitsEffectiveStatementImpl(final StmtContext<Integer, FractionDigitsStatement, ?> ctx) {
         super(ctx);
-
     }
-
 }
\ No newline at end of file