Branch: refs/heads/main
Home:
https://github.com/hibernate/hibernate-orm
Commit: f55c017f59a1662a9d3554a82af39a7c5242f8b3
https://github.com/hibernate/hibernate-orm/commit/f55c017f59a1662a9d3554a...
Author: norbert_wirges <norbert.wirges(a)werum.com>
Date: 2023-07-20 (Thu, 20 Jul 2023)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/engine/internal/Cascade.java
Log Message:
-----------
HHH-16907 moved if from inside private method to around
This improves performance of cascadeLogicalOneToOneOrphanRemoval
handling, because entity fields are only read by reflection if the field
is actually a 1:1 relation (before the change, this was done every time
for every field)