gnodet opened a new pull request, #2956: URL: https://github.com/apache/cxf/pull/2956
## Summary - Replaces `MatcherHolder` (mutable `Matcher` with `synchronized` reuse) with `PatternHolder` (immutable `Pattern`, creates new `Matcher` per call) — simpler and inherently thread-safe without explicit synchronization - Replaces `TreeMap` with `HashMap` — the `Comparable` implementation on `MatcherHolder` was dead code (lists were appended to, never sorted) - Uses `computeIfAbsent` for cleaner wildcard map population - Makes `isWildcardBeanName` static Supersedes #607 (which also targeted the now-removed Blueprint `ConfigurerImpl`). ## Test plan - [x] `ConfigurerImplTest` passes - [ ] CI pipeline 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
