diff --git a/EventBus/src/org/greenrobot/eventbus/SubscriberMethodFinder.java b/EventBus/src/org/greenrobot/eventbus/SubscriberMethodFinder.java index db5e0ad3..8512b934 100644 --- a/EventBus/src/org/greenrobot/eventbus/SubscriberMethodFinder.java +++ b/EventBus/src/org/greenrobot/eventbus/SubscriberMethodFinder.java @@ -228,9 +228,9 @@ boolean checkAdd(Method method, Class eventType) { // Paranoia check throw new IllegalStateException(); } - // Put any non-Method object to "consume" the existing Method - anyMethodByEventType.put(eventType, this); } + // Put any non-Method object to "consume" the existing Method + anyMethodByEventType.put(eventType, this); return checkAddWithMethodSignature(method, eventType); } }