mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
18 lines
303 B
HTML
18 lines
303 B
HTML
<html>
|
|
<body>
|
|
Reports ternary conditional operators of the form <code>x ? true : false</code>
|
|
or similar, which can be trivially simplified.
|
|
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
foo() ? true : false
|
|
</code></pre>
|
|
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
foo()
|
|
</code></pre>
|
|
|
|
</body>
|
|
</html>
|