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

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>