mirror of
https://github.com/spring-projects/spring-security.git
synced 2026-05-11 18:11:39 +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