mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-03-30 11:58:59 +00:00
Refactor a few classes so that empty blocks are not longer used. For example, rather than: if(x) { } else { i++; } use: if(!x) { i++; } Issue gh-8945