mirror of
https://github.com/spring-projects/spring-security.git
synced 2026-01-01 13:01:00 +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