HHH-8558 - Bytecode enhancer: lazy loading support - checkstyle fix

This commit is contained in:
Steve Ebersole 2015-07-06 17:00:31 -05:00
parent ae070f32c9
commit 83f4d4b81d
1 changed files with 2 additions and 1 deletions

View File

@ -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];
}
}