UnnamedVariable
Use the unnamed variable syntax (`_`) for unused variables and lambda parameters.

Severity
WARNING

The problem

Prefer using an unnamed variable (_) to denote variables and patterns that are intentionally unused.

Suppression

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