File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
hibernate-core/src/main/java/org/hibernate/type/descriptor/java/spi Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 8
8
9
9
import org .hibernate .type .descriptor .WrapperOptions ;
10
10
import org .hibernate .type .descriptor .java .AbstractClassJavaType ;
11
+ import org .hibernate .type .descriptor .java .IncomparableComparator ;
11
12
import org .hibernate .type .descriptor .java .MutabilityPlan ;
12
13
import org .hibernate .type .descriptor .jdbc .JdbcType ;
13
14
import org .hibernate .type .descriptor .jdbc .JdbcTypeIndicators ;
20
21
public class EntityJavaType <T > extends AbstractClassJavaType <T > {
21
22
22
23
public EntityJavaType (Class <T > type , MutabilityPlan <T > mutabilityPlan ) {
23
- super ( type , mutabilityPlan );
24
+ super ( type , mutabilityPlan , IncomparableComparator . INSTANCE );
24
25
}
25
26
26
27
@ Override
You can’t perform that action at this time.
0 commit comments