mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
512 B
HTML
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> |