mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
GitOrigin-RevId: 395bb2147b20508ad2e6479763ddfe38bb71f05e
18 lines
462 B
HTML
18 lines
462 B
HTML
<html>
|
|
<body>
|
|
Reports long numeric literals without underscore separators and suggests adding them.
|
|
Underscore separators can make such literals easier to read.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
1000000
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
1_000_000
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>This inspection only reports if the language level of the project or module is 7 or higher.</p>
|
|
<p><small>New in 2020.2</small></p>
|
|
</body>
|
|
</html>
|