Files
openide/java/java-impl/resources/inspectionDescriptions/RemoveLiteralUnderscores.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

13 lines
542 B
HTML

<html>
<body>
Reports numeric literals with underscores and suggests removing them with a quick-fix.
This may be useful if you need to lower the language level.
<p>The quick-fix removes underscores from numeric literals. For example <code>1_000_000</code> will be converted to <code>1000000</code>.</p>
<!-- tooltip end -->
<p>
<i>Numeric literals with underscores</i> appeared in Java 7.
This inspection can help to downgrade for backward compatibility with earlier Java versions.
</p>
<p><small>New in 2020.2</small></p>
</body>
</html>