Migrate TypeDefinitionAware to JDT types
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / BaseLeafrefType.java
index 6ffe8c59d691df79b36cc2e6e30d5dded902ae0f..a9286eef3746a0bcd6504cd1cd07f13090208178 100644 (file)
@@ -37,16 +37,16 @@ final class BaseLeafrefType extends AbstractBaseType<LeafrefTypeDefinition> impl
 
     @Override
     public int hashCode() {
-        return TypeDefinitions.hashCode(this);
+        return LeafrefTypeDefinition.hashCode(this);
     }
 
     @Override
     public boolean equals(final Object obj) {
-        return TypeDefinitions.equals(this, obj);
+        return LeafrefTypeDefinition.equals(this, obj);
     }
 
     @Override
     public String toString() {
-        return TypeDefinitions.toString(this);
+        return LeafrefTypeDefinition.toString(this);
     }
 }