0df5d5158d
#KT-38297 Fixed
11 lines
244 B
HTML
11 lines
244 B
HTML
<html>
|
|
<body>This inspection reports redundant <b>requireNotNull</b> or <b>checkNotNull</b> call:
|
|
|
|
<pre>
|
|
fun foo(i: Int) {
|
|
requireNotNull(i) // This 'i' is always not null, so this 'requireNotNull' call is redundant.
|
|
}
|
|
</pre>
|
|
|
|
</body>
|
|
</html> |