(Object o)
| 5 | |
| 6 | public final class EventUtil { |
| 7 | public static void register(Object o) { |
| 8 | Slack.getInstance().getEventBus().subscribe(o); |
| 9 | } |
| 10 | |
| 11 | public static void unRegister(Object o) { |
| 12 | Slack.getInstance().getEventBus().unsubscribe(o); |
no test coverage detected