mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 16:21:49 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
18 lines
569 B
HTML
18 lines
569 B
HTML
<!-- Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
|
<html>
|
|
<body>
|
|
Reports expressions that can be factorized, i.e. reorganized to pull out a common factor.
|
|
This reduces redundancy and could improve the readability of your code.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
a && b || a && c
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
a && (b || c)
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p><small>New in 2021.3</small></p>
|
|
</body>
|
|
</html>
|