Files
kotlin-fork/idea/resources/inspectionDescriptions/RedundantIf.html
T

22 lines
358 B
HTML

<html>
<body>
Reports <b>if</b> statements which can be simplified to single 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>