Merge pull request #2103 from olee/patch-1

Fix possible crash in EventBus
This commit is contained in:
LexManos 2015-09-27 14:41:29 -07:00
commit 605457deec
1 changed files with 2 additions and 0 deletions

View File

@ -121,6 +121,8 @@ public class EventBus implements IEventExceptionHandler
public void unregister(Object object)
{
ArrayList<IEventListener> list = listeners.remove(object);
if (list == null)
return;
for (IEventListener listener : list)
{
ListenerList.unregisterAll(busID, listener);