fix an obvious bug in LocalTimeJavaDescriptor
This commit is contained in:
parent
b2b4d7a3f6
commit
6fe9d347c5
|
@ -77,7 +77,7 @@ public class LocalTimeJavaDescriptor extends AbstractTemporalTypeDescriptor<Loca
|
|||
return null;
|
||||
}
|
||||
|
||||
if ( LocalDate.class.isAssignableFrom( type ) ) {
|
||||
if ( LocalTime.class.isAssignableFrom( type ) ) {
|
||||
return (X) value;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue