HHH-12399 Re-introduce Environment#jvmHasTimestampBug as deprecated method
This commit is contained in:
parent
c8bd656461
commit
c6ea7fd359
|
@ -238,6 +238,17 @@ public final class Environment implements AvailableSettings {
|
|||
BYTECODE_PROVIDER_INSTANCE = buildBytecodeProvider( GLOBAL_PROPERTIES );
|
||||
}
|
||||
|
||||
/**
|
||||
* This will be removed soon; currently just returns false as no known JVM exibits this bug
|
||||
* and is also able to run this version of Hibernate ORM.
|
||||
* @deprecated removed as unneccessary
|
||||
* @return false
|
||||
*/
|
||||
@Deprecated
|
||||
public static boolean jvmHasTimestampBug() {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Should we use streams to bind binary types to JDBC IN parameters?
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue