final
indicates the local variable won't be changed. My feeling is that methods should be so short you should be able to easily understand them and so making the variable final may be a bit redundant.
I prefer to make fields final
because making the whole class so short, is a serious limitation. Also fields can have thread safety issues which local variables do not.