WeakArray.st
changeset 8931 10da5e5ddb8e
parent 8913 b9498d27a554
child 9244 14e608c8c5e5
--- a/WeakArray.st	Tue Jul 12 15:57:22 2005 +0200
+++ b/WeakArray.st	Tue Jul 12 15:58:14 2005 +0200
@@ -333,6 +333,11 @@
     self registerAsWeakArray.
 !
 
+postDeepCopy
+    dependents := nil.
+    self registerAsWeakArray.
+!
+
 skipInstvarIndexInDeepCopy:index
     "a helper for deepCopy; only indices for which this method returns
      false are copied in a deep copy."
@@ -936,7 +941,7 @@
 !WeakArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/WeakArray.st,v 1.61 2005-07-08 17:15:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/WeakArray.st,v 1.62 2005-07-12 13:57:58 cg Exp $'
 ! !
 
 WeakArray initialize!