mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
226256e264
Prior to this change, a parsing exception would be thrown if a <description> element was placed within a <map><entry/></map> element. The beans XSD has always permitted this arrangement, but BeanDefinitionParserDelegate did not respect it. The latter now simply ignores any <description> element, rather than failing. Issue: SPR-8563