Just a small note, I'd keep the final and add one on the Foo too. Less
bugs and in-code documentation. I wrote an article somewhere called
"Use finals everywhere" - I think it's a shame that final isn't the
default in Java and instead you had to write, for example, var int i;

 final int length = list.size();
 for(int i = 0; i < length; i++) {
         final Foo foo = list.get(i);

 }

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to