blob: 4c31fbf9d0a2c7a7fc2096fb5428f5f276831603 [file] [log] [blame]
<html>
<body>
Reports <b>if</b> statements which can be simplified to single assignment or
<b>return</b> statements.
<p>
For example:
<code><pre>
<b>if</b> (foo()) {
<b>return true</b>;
} <b>else</b> {
<b>return false</b>;
}
</pre></code>
can be simplified to
<code><pre>
<b>return</b> foo();
</pre></code>
<!-- tooltip end -->
<p>
</body>
</html>