-
-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getDeclaredMethods() should search super-interfaces recursively. #55
getDeclaredMethods() should search super-interfaces recursively. #55
Conversation
Thank you very much I will test your code first thing tomorrow morning 😊 |
Thank you I've checked and your implementation is even better than the former one since it also get default methods of interface herited from super interfaces !!! PS : BTW in your fork I noted some code not in the PR in method getReadMethod on line 2950 you replaced
by :
Is it to overcome a potential bug in Introspector since the code seems to handle just fine with your last PR ? B.R. |
Thank you for testing, @YSavanier ! I'm not sure which PR you are referring to, but it would be #33 that replaced Introspector (not my PR). |
Ok, I think we are good to merge this PR? Any objections? |
I'm looking forward to it being released ^^ |
LGTM 👍 |
@harawata do you plan to cherry-pick those changes to 3.1.x branch? |
3.2.7 is under way to the Central :) Thanks a lot! |
Thanks for the merge and the quick release, @lukaszlenart ! |
Cool, thanks a lot for your support :) |
…ld search super-interfaces recursively.
Backporting #55 to ognl-3-1-x branch.
This should fix #51 .
A few comments:
collectMethods()
andcollectAccessors()
), but it requires a bigger change.