Possible Duplicate:
Reference to object during finalize
I have an Object which is eligible for garbage collection, but within its finalize method, I save a reference to that Object, say by calling arrayList.add(this).
Will the object still get garbage collected?