HHH-5973 - Replaced , with + in AuditInterceptor.java and in events.xml

This commit is contained in:
Kamyar Sajjadi 2012-12-12 14:27:55 +01:00 committed by brmeyer
parent 669ec5002f
commit c0011f1cc6
2 changed files with 3 additions and 3 deletions

View File

@ -69,11 +69,11 @@ public class AuditInterceptor extends EmptyInterceptor {
public void afterTransactionCompletion(Transaction tx) {
if ( tx.wasCommitted() ) {
System.out.println("Creations: " + creates + ", Updates: " + updates, "Loads: " + loads);
System.out.println("Creations: " + creates + ", Updates: " + updates + "Loads: " + loads);
}
updates=0;
creates=0;
loads=0;
}
}
}

View File

@ -102,7 +102,7 @@ public class AuditInterceptor extends EmptyInterceptor {
public void afterTransactionCompletion(Transaction tx) {
if ( tx.wasCommitted() ) {
System.out.println("Creations: " + creates + ", Updates: " + updates, "Loads: " + loads);
System.out.println("Creations: " + creates + ", Updates: " + updates + "Loads: " + loads);
}
updates=0;
creates=0;