Remove yang.model.util.BaseTypes
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BaseInt32Type.java
index 8e4d65f708228b178c79b29c2e5bb1b8444c839d..779966a53269fed921da29b257c89786c171bc0b 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.Int32TypeDefinition;
-import org.opendaylight.yangtools.yang.model.util.BaseTypes;
 
 final class BaseInt32Type extends AbstractRangeRestrictedBaseType<Int32TypeDefinition, Integer>
         implements Int32TypeDefinition {
     static final @NonNull BaseInt32Type INSTANCE = new BaseInt32Type();
 
     private BaseInt32Type() {
-        super(BaseTypes.INT32_QNAME, Integer.MIN_VALUE, Integer.MAX_VALUE);
+        super(QNAME, Integer.MIN_VALUE, Integer.MAX_VALUE);
     }
 
     @Override