mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
14 lines
390 B
HTML
14 lines
390 B
HTML
<html>
|
|
<body>
|
|
Reports calls to methods like <code>format()</code> and <code>printf()</code> that can be safely removed or simplified.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
System.out.println(String.format("Total count: %d", 42));
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
System.out.printf("Total count: %d%n", 42);
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |