LongLiteralLowerCaseSuffix
Prefer 'L' to 'l' for the suffix to long literals

Severity
ERROR

The problem

A long literal can have a suffix of ‘L’ or ‘l’, but the former is less likely to be confused with a ‘1’ in most fonts.

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("LongLiteralLowerCaseSuffix") to the enclosing element.