blob: e81c4f73b2bc24a80a36eff9ba419c545cc07532 [file]
<html>
<body>
Reports unnecessary creation of temporary objects when converting
from primitive types to Strings.
<p>
For example:
<code><pre>
new Integer(3).toString()
</pre></code>
will be reported, and can be automatically converted to:
<code><pre>
Integer.toString(3)
</pre></code>
<!-- tooltip end -->
<p>
<small>Powered by InspectionGadgets</small>
</body>
</html>