Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 380 Bytes

UnnecessaryLongInstantiation.md

File metadata and controls

11 lines (6 loc) · 380 Bytes

Pattern: Unnecessary Long instantiation

Issue: -

Description

It is unnecessary to instantiate Long objects. Instead just use the literal with the L identifier to force the type, such as 8L or 42L.

Further Reading