Files
openide/java/java-impl/resources/inspectionDescriptions/StringConcatenationMissingWhitespace.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

16 lines
512 B
HTML

<html>
<body>
Reports string concatenations with missing whitespaces, that is where the left-hand side
ends with a Unicode letter or digit and the right-hand side starts with a Unicode letter or digit.
<p><b>Example:</b></p>
<pre><code>
String sql = "SELECT column" +
"FROM table";
</code></pre>
<!-- tooltip end -->
<p>
Use the <b>Ignore concatenations with variable strings</b> option to only report
when both the left and right side of the concatenation are literals.
</p>
</body>
</html>