Collection.st
changeset 8609 daa0d6682135
parent 8608 932c25ca08a7
child 8631 a839f7beebe4
--- a/Collection.st	Thu Sep 30 14:04:19 2004 +0200
+++ b/Collection.st	Thu Sep 30 14:16:23 2004 +0200
@@ -1437,7 +1437,7 @@
         result addAll:individualResult.
     ].
 
-    ^ result
+    ^ result ? #()
 
     "
      #(1 2 3 4) collectAll:[:n | Array new:n withAll:n ]  
@@ -2760,7 +2760,7 @@
 !Collection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.168 2004-09-30 12:04:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.169 2004-09-30 12:16:23 cg Exp $'
 ! !
 
 Collection initialize!