HHH-18787 Contribute type using returnedClass().getTypeName() instead of returnedClass().getName()
This commit is contained in:
parent
1082ae24dd
commit
045b722c8d
|
@ -56,7 +56,7 @@ public interface TypeContributions {
|
||||||
* type for values of type {@link UserType#returnedClass()}.
|
* type for values of type {@link UserType#returnedClass()}.
|
||||||
*/
|
*/
|
||||||
default void contributeType(UserType<?> type) {
|
default void contributeType(UserType<?> type) {
|
||||||
contributeType( type, type.returnedClass().getName() );
|
contributeType( type, type.returnedClass().getTypeName() );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue