Inspectopedia
 
2024.3

'String.equals()' called with 'CharSequence' argument

Warning
New
Last modified: 03 December 2024

Reports calls to String.equals() with a CharSequence as the argument.

String.equals() can only return true for String arguments. To compare the contents of a String with a non-String CharSequence argument, use the contentEquals() method.

Example:

After quick-fix is applied:

New in 2017.3