VarWithPrimitive
Avoid using `var` with primitive types. Explicit primitive type names are short and clear, and `var` provides no benefit in readability while potentially hiding the type.
Suppression
Suppress false positives by adding the suppression annotation @SuppressWarnings("VarWithPrimitive") to the enclosing element.