Files
kotlin-fork/idea/resources-en/inspectionDescriptions/RedundantRequireNotNullCall.html
T
Dmitry Gridin 0df5d5158d Add resources-en for idea
#KT-38297 Fixed
2020-05-19 16:22:06 +07:00

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>