Reuse integer QNames
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / type / UInt64EffectiveStatementImpl.java
index 4a07e45ba881950a7af591ef885f52cc1cf07b28..715f3970839b8b6a4ed002fc6add4ae6ddb4c56d 100644 (file)
@@ -11,6 +11,7 @@ package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.type;
 import java.math.BigInteger;
 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement;
+import org.opendaylight.yangtools.yang.model.util.BaseTypes;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.TypeUtils;
 
@@ -25,7 +26,7 @@ public class UInt64EffectiveStatementImpl extends UnsignedIntegerEffectiveImplBa
 
     public UInt64EffectiveStatementImpl(final StmtContext<String, TypeStatement, EffectiveStatement<String, TypeStatement>> ctx) {
 
-        super(ctx, LOCAL_NAME, MAX_RANGE, DESCRIPTION);
+        super(ctx, BaseTypes.UINT64_QNAME, MAX_RANGE, DESCRIPTION);
     }
 
     @Override