HHH-18787 Contribute type using returnedClass().getTypeName() instead of returnedClass().getName()

This commit is contained in:
Čedomir Igaly 2024-11-06 09:40:45 +01:00 committed by Christian Beikov
parent 1082ae24dd
commit 045b722c8d
1 changed files with 1 additions and 1 deletions

View File

@ -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() );
} }
/** /**