HHH-13831 Refresh listeners when one is replaced

This commit is contained in:
Davide D'Alto 2020-01-29 14:04:08 +00:00 committed by Steve Ebersole
parent f7aba3ea17
commit 5c1cc35f98
1 changed files with 1 additions and 0 deletions

View File

@ -222,6 +222,7 @@ class EventListenerGroupImpl<T> implements EventListenerGroup<T> {
checkAgainstBaseInterface( listener );
performInjections( listener );
itr.set( listener );
listeners = null; //Marks it for refreshing
doAdd = false;
break strategy_loop;
}