mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
24 lines
409 B
HTML
24 lines
409 B
HTML
<html>
|
|
<body>
|
|
Reports double negations that can be simplified.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
if (!!functionCall()) {}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
if (functionCall()) {}
|
|
</code></pre>
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
if (!(a != b)) {}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
if (a == b) {}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
|
|
</body>
|
|
</html> |