90b0ea73dc
#KT-30640 Fixed #KT-22412 Fixed
11 lines
290 B
HTML
11 lines
290 B
HTML
<html>
|
|
<body>
|
|
This inspection reports guard clause that can be replaced with kotlin's function call. For example:
|
|
<br /><br />
|
|
<pre>
|
|
fun test(foo: Int?) {
|
|
if (foo == null) throw IllegalArgumentException("foo") // Replace guard clause with kotlin's function call
|
|
}
|
|
</pre>
|
|
</body>
|
|
</html> |