HHH-12692 Fixing style

This commit is contained in:
Sanne Grinovero 2018-07-03 23:39:43 +01:00
parent 5f0024feae
commit 665110452e
1 changed files with 6 additions and 5 deletions

View File

@ -2314,15 +2314,16 @@ public final class SessionImpl
@Override
public String toString() {
StringBuilder buf = new StringBuilder( 500 )
.append( "SessionImpl(" ).append(System.identityHashCode(this));
.append( "SessionImpl(" ).append( System.identityHashCode( this ) );
if ( !isClosed() ) {
if(TRACE_ENABLED) {
buf.append( persistenceContext )
if ( TRACE_ENABLED ) {
buf.append( persistenceContext )
.append( ";" )
.append( actionQueue );
}
else
buf.append("<open>");
else {
buf.append( "<open>" );
}
}
else {
buf.append( "<closed>" );