blob: 99642963522d040d336192228be59a9239b23312 [file] [log] [blame]
<html>
<body>
Reports if statements of the form
<b>if (<i>condition</i>) return true else return <i>foo</i></b>
or <b>if (<i>condition</i>) return false else return <i>foo</i></b>.
These expressions may be safely simplified to
<b>return <i>condition</i> && <i>foo</i></b> or
<b>return !<i>condition</i> || <i>foo</i></b>, respectively.
<!-- tooltip end -->
<p>
</body>
</html>