mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
354 B
HTML
15 lines
354 B
HTML
<html>
|
|
<body>
|
|
Reports unnecessary creation of temporary objects when converting
|
|
from a primitive type to <code>String</code>.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
String foo = new Integer(3).toString();
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
String foo = Integer.toString(3);
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |