Follow up of: #40
The FinalLocalVariableCheck recipe has partial coverage and doesn't handle cases where multiple variables are declared together.
Example:
int a, b, c; // Only one variable has violation
Currently, cases like this where only one variable in a multi-variable declaration needs to be made final, the recipe won't process it.
Update the recipe to properly handle multiple variable declarations and apply the final modifier correctly.