-
Notifications
You must be signed in to change notification settings - Fork 41.5k
Remove final from ProblemDetailsExceptionHandler classes to allow proxying #34503
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
Conversation
final
from ProblemDetailsExceptionHandler
s to allow proxying
I wonder if we should add some tests just to stop |
@philwebb, sounds like a good idea. I first thought of adding a |
Thanks @vy! Rather than a new dependency we might change this to use standard reflection when we merge it. |
@philwebb, ArchUnit was already used in If you prefer reflection, please also let me know if you want to target |
Ahh, I missed that we're already using it. No worries then. We'll take a judgement call when we merge it but don't worry about updating it. |
@wilkinsona, thanks so much for the prompt processing of the ticket and keeping me in the loop. 🙇 I didn't know about |
@wilkinsona, at a glance it appears that those two |
Good catch, Sam. Thank you. Corrected in b91f814. |
Removes
final
modifier fromProblemDetailsExceptionHandler
implementations to allow proxying these beans. See #34426 for the issue.