Who cares what final does between the code below. Is there any advantage to declaring arguments as final .
public String changeTimezone( Timestamp stamp, Timezone fTz, Timezone toTz){ return .... } public String changeTimezone(final Timestamp stamp, final Timezone fTz, final Timezone toTz){ return .... }
java methods arguments final
John Nov 12 '10 at 7:38 2010-11-12 07:38
source share