HHH-12692 Fixing style
This commit is contained in:
parent
5f0024feae
commit
665110452e
|
@ -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>" );
|
||||
|
|
Loading…
Reference in New Issue