Skip to content

Commit 83f4d4b

Browse files
committed
HHH-8558 - Bytecode enhancer: lazy loading support - checkstyle fix
1 parent ae070f3 commit 83f4d4b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hibernate-core/src/main/java/org/hibernate/event/internal/DefaultFlushEntityEventListener.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,8 @@ protected void dirtyCheck(final FlushEntityEvent event) throws HibernateExceptio
485485
if ( entity instanceof SelfDirtinessTracker ) {
486486
if ( ( (SelfDirtinessTracker) entity ).$$_hibernate_hasDirtyAttributes() ) {
487487
dirtyProperties = persister.resolveAttributeIndexes( ( (SelfDirtinessTracker) entity ).$$_hibernate_getDirtyAttributes() );
488-
} else {
488+
}
489+
else {
489490
dirtyProperties = new int[0];
490491
}
491492
}

0 commit comments

Comments
 (0)