Platform independent issues
Local variables 2.1.1 Do not store method’s locals in fields Do not store information in field if it is used only as local. Declare local variable right in place Minimize scope of local variables. Declare local variables right in place. If you use variable inside loop, declare it in the loop. Declare loop counter in the loop itself if possible (otherwise declare it right before loop).
|