WeakDependencyDictionary.st
branchjv
changeset 17966 8b5df02e171f
parent 17911 a99f15c5efa5
child 18011 deb0c3355881
--- a/WeakDependencyDictionary.st	Fri Sep 07 13:46:06 2012 +0100
+++ b/WeakDependencyDictionary.st	Fri Sep 07 17:24:32 2012 +0100
@@ -55,12 +55,10 @@
     "return a container for keys of size n.
      use WeakArrays here."
 
-    |w|
+    ^ WeakArray new:n.
 
-    w := WeakArray new:n.
-    ^ w
-
-    "Modified: 7.1.1997 / 17:01:15 / stefan"
+    "Modified: / 07-01-1997 / 17:01:15 / stefan"
+    "Modified: / 04-08-2012 / 14:55:53 / cg"
 ! !
 
 !WeakDependencyDictionary methodsFor:'special dependency support'!
@@ -165,11 +163,11 @@
 !WeakDependencyDictionary class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/WeakDependencyDictionary.st,v 1.13 2011/09/29 11:19:05 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/WeakDependencyDictionary.st,v 1.14 2012/08/06 12:38:10 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: WeakDependencyDictionary.st 10761 2012-01-19 11:46:00Z vranyj1 $'
+    ^ '$Id: WeakDependencyDictionary.st 10844 2012-09-07 16:24:32Z vranyj1 $'
 ! !