Reports unnecessary creation of temporary objects when converting from
String
to primitive types.
Example:
new Integer("3").intValue()
After the quick-fix is applied:
Integer.valueOf("3")