mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
16 lines
404 B
HTML
16 lines
404 B
HTML
<html>
|
|
<body>
|
|
Reports redundant <code>\d</code> or <code>[:digit:]</code> that are used in one class with <code>\w</code> or <code>[:word:]</code>
|
|
(<code>\D</code> with <code>\W</code>) and can be removed.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
[\w\d]
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
[\w]
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p><small>New in 2022.2</small>
|
|
</body>
|
|
</html> |