Remove yang.model.util.BaseTypes
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BaseUint8Type.java
index 5c33c0c141a441885b4a8db08732f0399f2f0c3c..72186ee7f0f7408dab20c1f0679b8c21c511b6ba 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.Uint8;
 import org.opendaylight.yangtools.yang.model.api.type.Uint8TypeDefinition;
-import org.opendaylight.yangtools.yang.model.util.BaseTypes;
 
 final class BaseUint8Type extends AbstractRangeRestrictedBaseType<Uint8TypeDefinition, Uint8>
         implements Uint8TypeDefinition {
     static final @NonNull BaseUint8Type INSTANCE = new BaseUint8Type();
 
     private BaseUint8Type() {
-        super(BaseTypes.UINT8_QNAME, Uint8.ZERO, Uint8.MAX_VALUE);
+        super(QNAME, Uint8.ZERO, Uint8.MAX_VALUE);
     }
 
     @Override