mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
The 9-arg canonical constructor for SpelParserConfiguration was recently introduced to support the new maximumNestingDepth property in 7.1. However, this feature has not yet been released, and in the interim we introduced a builder API which supersedes the use of those constructors. Since no released version has ever exposed this constructor publicly, this commit converts it to package-private in favor of exclusively using the builder to construct instances which need to override the default value for maximumNestingDepth. See gh-36723 See gh-37187 See gh-37190