()
| 89 | } |
| 90 | |
| 91 | componentWillMount() { |
| 92 | stores.emitter.on(CONNECTION_CONNECTED, this.connectionConnected); |
| 93 | stores.emitter.on(CONNECTION_DISCONNECTED, this.connectionDisconnected); |
| 94 | stores.emitter.on(ERROR, this.error); |
| 95 | }; |
| 96 | |
| 97 | componentWillUnmount() { |
| 98 | stores.emitter.removeListener(CONNECTION_CONNECTED, this.connectionConnected); |
nothing calls this directly
no outgoing calls
no test coverage detected