W1001 Cleanup Warnings

Cleanup

variable is declared but never used; remove it or use it

When this occurs

Variable declared but never referenced

Example error message

warning[W1001]: variable 'x' is declared but never used

How to fix

Use the variable, remove it, or suppress with `#suppress(W1001)`.

Related errors