HHH-6348 POST_COMMIT_DELETE listener does not get executed

This commit is contained in:
Strong Liu 2011-06-22 17:45:59 +08:00
parent 2815409af7
commit 592921ba5c
1 changed files with 3 additions and 0 deletions

View File

@ -158,6 +158,9 @@ public final class EntityDeleteAction extends EntityAction {
getPersister(),
eventSource()
);
for( PostDeleteEventListener listener : listenerGroup.listeners() ){
listener.onPostDelete( event );
}
}
@Override