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
class Listener has a property dictionary of event names to closures. We are able to register new listeners, but we can never remove them. Please add a new method so we can remove them.
class Listener {
removeListener(eventName: String) {
self.onListener[eventName] = nil
}
The text was updated successfully, but these errors were encountered:
class Listener has a property dictionary of event names to closures. We are able to register new listeners, but we can never remove them. Please add a new method so we can remove them.
The text was updated successfully, but these errors were encountered: