Reports redundant collection conversions.

The quick-fix will remove the redundant conversions.

Example:


  List(1, 2).toList

After the quick-fix is applied:


  List(1, 2)