Reports when equals() is called on specific classes like StringBuilder or StringBuffer.
The equals() method is not overridden in these classes, so may return false even when the contents of two objects are the same.
If reference equality is intended, it's better to use == to avoid confusion.
New in 2017.2