Remove yang.model.util.BaseTypes
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BaseUint16Type.java
index 39ead259f41ee7ed4548b8613c960ba3bf826599..9b2acb4fe64ebe03ba320f040bfb735e4f1c582d 100644 (file)
@@ -10,14 +10,13 @@ package org.opendaylight.yangtools.yang.model.util.type;
 import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.yangtools.yang.common.Uint16;
 import org.opendaylight.yangtools.yang.model.api.type.Uint16TypeDefinition;
-import org.opendaylight.yangtools.yang.model.util.BaseTypes;
 
 final class BaseUint16Type extends AbstractRangeRestrictedBaseType<Uint16TypeDefinition, Uint16>
         implements Uint16TypeDefinition {
     static final @NonNull BaseUint16Type INSTANCE = new BaseUint16Type();
 
     private BaseUint16Type() {
-        super(BaseTypes.UINT16_QNAME, Uint16.ZERO, Uint16.MAX_VALUE);
+        super(QNAME, Uint16.ZERO, Uint16.MAX_VALUE);
     }
 
     @Override