Files
openide/java/java-impl/resources/inspectionDescriptions/UnnecessaryTemporaryOnConversionFromString.html
2025-02-05 04:43:28 +00:00

17 lines
333 B
HTML

<html>
<body>
Reports unnecessary creation of temporary objects when converting
from <code>String</code> to primitive types.
<p><b>Example:</b></p>
<pre><code>
new Integer("3").intValue()
</code></pre>
<p>After the quick-fix is applied:</p>
<pre><code>
Integer.valueOf("3")
</code></pre>
<!-- tooltip end -->
<p>
</body>
</html>