Move TypeDefinitions into yang-model-api
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / RestrictedUint32Type.java
index e167223cc27b5767539c76da4133947daac4c95e..d914c2364aab9df0145697da31595205424a1855 100644 (file)
@@ -25,16 +25,16 @@ final class RestrictedUint32Type extends AbstractRangeRestrictedType<Uint32TypeD
 
     @Override
     public int hashCode() {
-        return TypeDefinitions.hashCode(this);
+        return Uint32TypeDefinition.hashCode(this);
     }
 
     @Override
     public boolean equals(final Object obj) {
-        return TypeDefinitions.equals(this, obj);
+        return Uint32TypeDefinition.equals(this, obj);
     }
 
     @Override
     public String toString() {
-        return TypeDefinitions.toString(this);
+        return Uint32TypeDefinition.toString(this);
     }
 }