show/hide this revision's text 2 Response to comments

Yes do it.

To the people who said it isn't necessary, think

It's about the next person who comes along who will try to reassign these variables. You should enforce using final on parameters using checkstylereadability. Then you'll know with confidence that your parameters are fixed, and it will be It's easier to reason about code that the possible states of the program when you readknow that variables are assigned once and only once.

A decent alternative is to turn on the IDE warning when a parameter is assigned, or when a variable (other than a loop variable) is assigned more than once.

show/hide this revision's text 1

Yes do it.

To the people who said it isn't necessary, think about the next person who comes along who will try to reassign these variables. You should enforce using final on parameters using checkstyle. Then you'll know with confidence that your parameters are fixed, and it will be easier to reason about code that you read.