if
return
Example:
if(foo()) { return true; } else { return false; }
After applying the quick-fix the code looks as follows:
return foo();