Reports usages of sameElements
or corresponds
to compare collections of same kind (Seq, Set, or Map).
The quick-fix uses a equality instead.
Example:
seq sameElements list
hashSet sameElements treeSet
After the quick-fix is applied:
seq == list
hashSet == treeSet