mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
17 lines
394 B
HTML
17 lines
394 B
HTML
<html>
|
|
<body>
|
|
Reports control flow statements with a single statement in their code block and
|
|
suggests removing the braces from the control flow statement body.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
if (x > 0) {
|
|
System.out.println("x is positive");
|
|
}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
if (x > 0) System.out.println("x is positive");
|
|
</code></pre>
|
|
</body>
|
|
</html>
|