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:

  boolean equals(String s, CharSequence ch) {
    return s.equals(ch);
  }

After quick-fix is applied:

  boolean equals(String s, CharSequence ch) {
    return s.contentEquals(ch);
  }

New in 2017.3