mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
Prior to this commit, BeanOverrideHandler contained a large amount of logic solely related to search algorithms for finding handlers. Consequently, BeanOverrideHandler took on more responsibility than it ideally should. In addition, we will soon increase the complexity of those search algorithms, and we will need to make another utility method public for use outside the bean.override package. To address those issues, this commit extracts the search utilities from BeanOverrideHandler into a new BeanOverrideUtils class. Closes gh-36533