You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Subscribing an object to an EventBus via EventBus.subscribe(Object) adds said object and it's associated listeners to the listenerCache during the getListeners call. This map is never shrunk/cleared, resulting in said objects never being able to be garbage collected, even after being unsubscribed.
The text was updated successfully, but these errors were encountered:
Subscribing an object to an EventBus via
EventBus.subscribe(Object)
adds said object and it's associated listeners to thelistenerCache
during thegetListeners
call. This map is never shrunk/cleared, resulting in said objects never being able to be garbage collected, even after being unsubscribed.The text was updated successfully, but these errors were encountered: