Pointers to garbage collection
I understand that an object becomes eligible for garbage collection when no references to it exist anymore. So it's good to nullify refs as soon as you're done with them. But is it useful to nullify local variables just before they go out of scope? I heard from more experienced J2ME developers it is because garbage collectors in jvms on devices are missing 'something'. Any pointers to where this is explained in more detail?
Thanks
Mark

