mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
331 B
HTML
16 lines
331 B
HTML
<html>
|
|
<body>
|
|
Reports equality expressions which are negated by a prefix expression.
|
|
<p>Such expressions can be simplified using the <code>!=</code> operator.</p>
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
!(i == 1)
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
i != 1
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
</body>
|
|
</html> |