Checkstyle has the ability to detect when variables are shadowed by local variables: http://checkstyle.sourceforge.net/config_coding.html#HiddenField
We should enable this as it makes reading the code clearer, as well as reducing potential bugs with missing this. prefixes.
Checkstyle has the ability to detect when variables are shadowed by local variables: http://checkstyle.sourceforge.net/config_coding.html#HiddenField
We should enable this as it makes reading the code clearer, as well as reducing potential bugs with missing
this.prefixes.