Files
openide/java/java-impl/resources/inspectionDescriptions/InsertLiteralUnderscores.html
T
Bas Leijdekkersandintellij-monorepo-bot 45681c23e8 Java: fix typo in inspection description
GitOrigin-RevId: 395bb2147b20508ad2e6479763ddfe38bb71f05e
2025-06-20 18:38:03 +00:00

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>