Standardized the order of modifiers in variable declarations by replacing all instances of final static
with static final
across the codebase.
Why?
The conventional order of modifiers in Java is static
followed by final
. Adhering to this order ensures consistency and meets standard coding practices.