greenrobot / EventBus

Event bus for Android and Java that simplifies communication between Activities, Fragments, Threads, Services, etc. Less code, better quality.
http://greenrobot.org/eventbus/
Apache License 2.0
24.67k stars 4.66k forks source link

SubscriberMethodFinder field optimization. #699

Open Quyunshuo opened 2 years ago

Quyunshuo commented 2 years ago

I found that there is subscriberInfoIndexes field in SubscriberMethodFinder that can be set to final,And I observe that this field is only assigned in the constructor,So I set this field to final. I don't know if this modification is in line with your expectations.

greenrobot-team commented 2 years ago

Thanks! I doubt this makes a significant difference, but if it checks out we'll include this in the next release.

Quyunshuo commented 2 years ago

Thanks! I doubt this makes a significant difference, but if it checks out we'll include this in the next release.

Good!