mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-20 13:27:46 +00:00
Previously a NullPointerException would be thrown if no HttpSecurity matched on the request passed in. This was because findFilters would return null rather than an empty List. This commit returns null if findFilters gets a null result. Fixes gh-3343