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