mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 17:47:53 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
15 lines
397 B
HTML
15 lines
397 B
HTML
<html>
|
|
<body>
|
|
Reports redundant embedded expressions in <code>STR</code> templates, such as trivial literals or empty expressions.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
System.out.println(STR."Hello \{"world"}");
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
System.out.println(STR."Hello world");
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p><small>New in 2023.3</small></p>
|
|
</body>
|
|
</html> |