This inspection reports function calls that can be replaced with binary operators, especially comparison-related. Example:
2.compareTo(1) > 0
can be replaced by
2 > 1
.