Added missing space per code-style

Added missing space per code-style
This commit is contained in:
Steve Ebersole 2022-02-16 06:48:18 -06:00
parent 6685a7a145
commit 32ee43cfe7
1 changed files with 1 additions and 1 deletions

View File

@ -484,7 +484,7 @@ public abstract class AbstractEntityInitializer extends AbstractFetchParentAcces
final EntityEntry entry = session.getPersistenceContextInternal().getEntry( this.entityInstance );
if ( entry != null && entry.getLockMode().lessThan( lockMode ) ) {
//we only check the version when _upgrading_ lock modes
if ( versionAssembler != null && entry.getLockMode() != LockMode.NONE) {
if ( versionAssembler != null && entry.getLockMode() != LockMode.NONE ) {
checkVersion( entry, rowProcessingState );
}
//we need to upgrade the lock mode to the mode requested