Files
openide/RegExpSupport/resources/inspectionDescriptions/RegExpDuplicateAlternationBranch.html
Bas Leijdekkers c50a102e50 update RegExp inspection descriptions with examples
GitOrigin-RevId: 1daa0f68ede1036d134127cdacd0b61e5d438ca8
2021-06-06 13:43:39 +00:00

16 lines
382 B
HTML

<html>
<body>
Reports duplicate branches in a RegExp alternation.
Duplicate branches slow down matching and obscure the intent of the expression.
<p><b>Example:</b></p>
<pre><code>
(alpha|bravo|charlie|alpha)
</code></pre>
<p>After the quick-fix is applied:</p>
<pre><code>
(alpha|bravo|charlie)
</code></pre>
<!-- tooltip end -->
<p><small>New in 2017.1</small>
</body>
</html>