return
if
例:
if(foo()) { return true; } else { return false; }
クイックフィックスを適用すると、コードは次のようになります。
return foo();