mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
d757f73902
Prior to Spring Framework 5.2, most annotation search algorithms made use of AnnotationUtils.handleIntrospectionFailure() to handle exceptions thrown while attempting to introspect annotation metadata. With the introduction of the new MergedAnnotation API in Spring Framework 5.2, this exception handling was accidentally removed. This commit introduces the use of handleIntrospectionFailure() within the new MergedAnnotation internals in order to (hopefully) align with the previous behavior. Closes gh-24188