How can I auto-add the final modifier to newly declared variables? What I want is to write
int i = 42;
and having this variable automatically converted to a value using the final modifier, so this line would look like:
final int i = 42;
How can I auto-add the final modifier to newly declared variables? What I want is to write
int i = 42;
and having this variable automatically converted to a value using the final modifier, so this line would look like:
final int i = 42;