mirror of
https://github.com/spring-projects/spring-security.git
synced 2026-04-18 23:10:25 +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