Author: max.ross
Date: 2009-01-21 17:45:58 -0500 (Wed, 21 Jan 2009)
New Revision: 15808
Modified:
shards/trunk/src/java/org/hibernate/shards/util/InterceptorList.java
Log:
HSHARDS-56
Thanks to Torbjorn for the patch!
Modified: shards/trunk/src/java/org/hibernate/shards/util/InterceptorList.java
===================================================================
--- shards/trunk/src/java/org/hibernate/shards/util/InterceptorList.java 2009-01-20
22:27:55 UTC (rev 15807)
+++ shards/trunk/src/java/org/hibernate/shards/util/InterceptorList.java 2009-01-21
22:45:58 UTC (rev 15808)
@@ -144,7 +144,7 @@
public void postFlush(Iterator entities) throws CallbackException {
for(Interceptor interceptor : interceptors) {
- interceptor.preFlush(entities);
+ interceptor.postFlush(entities);
}
}
Show replies by date