Created by: jmini
Declaring LOGGER
as private static final
is a best practice in Java.
https://stackoverflow.com/questions/6653520/why-do-we-declare-loggers-static-final
This is part of code cleanup to avoid fields hiding others.
Having field declarations that hides another field or variable is in my opinion a bad practice in java. Name shadowing can cause subtle errors and should be avoided.