mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
2d3a2c5cbd
Prior to this commit, ValidationAnnotationUtils looked up @Validated as a meta-annotation at arbitrary depths (e.g., when used as a meta-meta-annotation) in determineValidationGroups() but only as a "directly present" meta-annotation in determineValidationHints(). For consistency, this commit revises determineValidationHints() so that it finds @Validated as a meta-annotation at arbitrary depths as well. Closes gh-36274