mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
15 lines
416 B
HTML
15 lines
416 B
HTML
<html>
|
|
<body>
|
|
Reports binary, conditional, or <code>instanceof</code> expressions that consist of different operators
|
|
without parentheses. Such expressions can be less readable due to different precedence rules of operators.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
int n = 3 + 9 * 8 + 1;
|
|
</code></pre>
|
|
<p>After quick-fix is applied:</p>
|
|
<pre><code>
|
|
int n = 3 + (9 * 8) + 1;
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |