18 lines
295 B
HTML
18 lines
295 B
HTML
<html>
|
|
<body>
|
|
This inspection reports <b>if</b> statements which can be simplified to single statements. For example:
|
|
<br /><br />
|
|
|
|
<pre>
|
|
<b>if</b> (foo()) {
|
|
<b>return true</b>
|
|
} <b>else</b> {
|
|
<b>return false</b>
|
|
}
|
|
</pre>
|
|
|
|
<p>can be simplified to <b>return foo()</b>.</p>
|
|
|
|
</body>
|
|
</html>
|