Reports long literals ending with lowercase 'l'. These literals may be confusing, as the lowercase 'l' looks very similar to a literal '1' (one).

Example:


  long nights = 100l;

After the quick-fix is applied:


  long nights = 100L;