HHH-8558 - Bytecode enhancer: lazy loading support - checkstyle fix
This commit is contained in:
parent
ae070f32c9
commit
83f4d4b81d
|
@ -485,7 +485,8 @@ public class DefaultFlushEntityEventListener implements FlushEntityEventListener
|
|||
if ( entity instanceof SelfDirtinessTracker ) {
|
||||
if ( ( (SelfDirtinessTracker) entity ).$$_hibernate_hasDirtyAttributes() ) {
|
||||
dirtyProperties = persister.resolveAttributeIndexes( ( (SelfDirtinessTracker) entity ).$$_hibernate_getDirtyAttributes() );
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
dirtyProperties = new int[0];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue