mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
17 lines
425 B
HTML
17 lines
425 B
HTML
<html>
|
|
<body>
|
|
Reports conditional expressions with identical <code>then</code> and <code>else</code> branches.
|
|
<p>Such expressions almost certainly indicate bugs. The inspection provides a fix that collapses conditional expressions.</p>
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
int y = x == 10 ? 4 : 4;
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
int y = 4;
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
|
|
</body>
|
|
</html> |