GitReferenceUpdated: Declare listeners as DynamicSet

The listeners should be declared as DynamicSet, not Iterable.

Change-Id: I3d5dc4369713f7e18cb3d4b952f0c31209042197
This commit is contained in:
David Pursehouse
2016-10-06 11:28:31 +09:00
parent c027596513
commit ca40aad0b9

View File

@@ -63,7 +63,7 @@ public class GitReferenceUpdated {
Account.Id updater) {}
};
private final Iterable<GitReferenceUpdatedListener> listeners;
private final DynamicSet<GitReferenceUpdatedListener> listeners;
private final EventUtil util;
@Inject