mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 16:15:06 +00:00
HHH-17281 Make EntityUpdateAction#handleDeleted protected
This commit is contained in:
parent
68afa5607f
commit
fa9bdac794
@ -256,7 +256,10 @@ private void handleGeneratedProperties(EntityEntry entry) {
|
||||
}
|
||||
}
|
||||
|
||||
private void handleDeleted(EntityEntry entry) {
|
||||
/*
|
||||
* Used by Hibernate Reactive
|
||||
*/
|
||||
protected void handleDeleted(EntityEntry entry) {
|
||||
if ( entry.getStatus() == Status.DELETED ) {
|
||||
final EntityMetamodel entityMetamodel = getPersister().getEntityMetamodel();
|
||||
final boolean isImpliedOptimisticLocking = !entityMetamodel.isVersioned()
|
||||
|
Loading…
x
Reference in New Issue
Block a user