mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 02:04:23 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
15 lines
367 B
HTML
15 lines
367 B
HTML
<html>
|
|
<body>
|
|
Reports <code>long</code> literals ending with lowercase 'l'. These
|
|
literals may be confusing, as the lowercase 'l' looks very similar to a literal '1' (one).
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
long nights = 100l;
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
long nights = 100L;
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |