Reports unnecessary creation of temporary objects when converting from a primitive type to String.

Example:


  String foo = new Integer(3).toString();

After the quick-fix is applied:


  String foo = Integer.toString(3);