mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-03-24 17:08:50 +00:00
Simplify boolean returns of the form: if (b) { return true; } else { return false; } to: return b; Issue gh-8945
Simplify boolean returns of the form: if (b) { return true; } else { return false; } to: return b; Issue gh-8945