Files
kotlin-fork/idea/resources/inspectionDescriptions/RedundantElseInIf.html
T
2018-12-03 09:39:22 +03:00

17 lines
279 B
HTML

<html>
<body>
This inspection reports redundant <b>else</b> in <b>if</b> with <b>return</b>:
<pre>
fun foo(arg: Boolean): Int {
if (arg) return 0
// This else is redundant, code in braces could be just shifted left
else {
...
}
}
</pre>
</body>
</html>