Remove yang.model.util.BaseTypes
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BaseInt8Type.java
index bc11699ef49b15013822fca3067ce38aae511906..6afd197830e4c75b591acb6cc2eaa9ebdfbfd577 100644 (file)
@@ -9,14 +9,13 @@ package org.opendaylight.yangtools.yang.model.util.type;
 
 import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.yangtools.yang.model.api.type.Int8TypeDefinition;
-import org.opendaylight.yangtools.yang.model.util.BaseTypes;
 
 final class BaseInt8Type extends AbstractRangeRestrictedBaseType<Int8TypeDefinition, Byte>
         implements Int8TypeDefinition {
     static final @NonNull BaseInt8Type INSTANCE = new BaseInt8Type();
 
     private BaseInt8Type() {
-        super(BaseTypes.INT8_QNAME, Byte.MIN_VALUE, Byte.MAX_VALUE);
+        super(QNAME, Byte.MIN_VALUE, Byte.MAX_VALUE);
     }
 
     @Override