Pattern: Use of letter l
(ell) as suffix
Issue: -
The suffix L
is preferred, because the letter l
(ell) is often hard to distinguish from the digit 1
(one).
<module name="UpperEll"/>
Example of incorrect code:
long number = 1234567891l;
Example of correct code:
long number = 1234567891L;