Files
kotlin-fork/idea/resources-en/inspectionDescriptions/ReplaceNegatedIsEmptyWithIsNotEmpty.html
T
2020-09-03 14:20:35 +02:00

5 lines
238 B
HTML

<html>
<body>
This inspection reports <b>!collection.isEmpty()/isNotEmpty()</b> or <b>!str.isBlank()/isNotBlank()</b> call can be replaced with <b>collection.isNotEmpty()/isEmpty()</b> or <b>str.isNotBlank()/isBlank()</b>.
</body>
</html>