Browse Source
Simplify boolean returns of the form:
if (b) {
return true;
} else {
return false;
}
to:
return b;
Issue gh-8945
pull/8983/head
8 changed files with 8 additions and 44 deletions
Loading…
Reference in new issue