Hi,
2013/1/19 Daniel Naber
> On 18.01.2013, 17:35:01 Marcin Milkowski wrote:
>
> > Also, making a variable final should allow JVM to optimize the code
> > more, and hence make it slightly faster. Most coding guidelines actually
> > (including the one built-in in Eclipse) require to make as much
W dniu 2013-01-18 23:56, Daniel Naber pisze:
> On 18.01.2013, 17:35:01 Marcin Milkowski wrote:
>
>> Also, making a variable final should allow JVM to optimize the code
>> more, and hence make it slightly faster. Most coding guidelines actually
>> (including the one built-in in Eclipse) require to m
On 18.01.2013, 17:35:01 Marcin Milkowski wrote:
> Also, making a variable final should allow JVM to optimize the code
> more, and hence make it slightly faster. Most coding guidelines actually
> (including the one built-in in Eclipse) require to make as much
> finalization as possible.
We should
W dniu 2013-01-18 13:49, Richard Eckart de Castilho pisze:
>>> Do not use "final" for parameters or local variables, but write your code
>>> as if there was a "final", i.e. do not re-assign local variables. Configure
>>> your IDE to help you with that. For IntellJ IDEA, the warnings
>>> ("inspectio
>> Do not use "final" for parameters or local variables, but write your code
>> as if there was a "final", i.e. do not re-assign local variables. Configure
>> your IDE to help you with that. For IntellJ IDEA, the warnings
>> ("inspections") to activate are "Reuse of local variable" and "Assignment