Quick GC question
Hello guys, I've a very simple question regarding GC.
I've created a Class A, which creates 8-10 sprites and adds them.
Now from my Main Class, I create an instance of Class A and listen for its completion.
When Class A dispatches Event.COMPLETE event, what I simple do from my Main Class is:
removeChild(Class A instance);
removeEventListener(...);
Class A instance name = null;
What I really don't do is, I don't delete those 8-10 sprites from Class A, as Class A itself will be removed.
So my question is, in this scenario, is it required to remove those 8-10 sprites of Class A, when Class A itself is removed and all reference to Class A is deleted/nullfied?