HHH-11944 Fix preexisting typos in log messages

This commit is contained in:
Guillaume Smet 2017-08-30 14:01:12 +02:00
parent de1642ba93
commit 12dd8522be
1 changed files with 2 additions and 2 deletions

View File

@ -1437,7 +1437,7 @@ public class StatefulPersistenceContext implements PersistenceContext {
public void serialize(ObjectOutputStream oos) throws IOException {
final boolean tracing = LOG.isTraceEnabled();
if ( tracing ) {
LOG.trace( "Serializing persisatence-context" );
LOG.trace( "Serializing persistence-context" );
}
oos.writeBoolean( defaultReadOnly );
@ -1533,7 +1533,7 @@ public class StatefulPersistenceContext implements PersistenceContext {
SessionImplementor session) throws IOException, ClassNotFoundException {
final boolean tracing = LOG.isTraceEnabled();
if ( tracing ) {
LOG.trace( "Serializing persistent-context" );
LOG.trace( "Deserializing persistence-context" );
}
final StatefulPersistenceContext rtn = new StatefulPersistenceContext( session );
SessionFactoryImplementor sfi = session.getFactory();