class: ArrayedCollection
authorStefan Vogel <sv@exept.de>
Fri, 06 Dec 2013 15:40:54 +0100
changeset 15855 02483477abfc
parent 15854 811e3095236e
child 15856 9f5861a3c36c
class: ArrayedCollection changed: #storeOn:
ArrayedCollection.st
--- a/ArrayedCollection.st	Fri Dec 06 15:40:10 2013 +0100
+++ b/ArrayedCollection.st	Fri Dec 06 15:40:54 2013 +0100
@@ -393,7 +393,7 @@
     |index "{ Class: SmallInteger }"|
 
     thisContext isRecursive ifTrue:[
-        Object recursiveStoreStringSignal raiseRequestWith:self.
+        RecursiveStoreError raiseRequestWith:self.
         'ArrayedCollection [error]: storeOn: of self referencing collection.' errorPrintCR.
         aStream nextPutAll:'#recursive'.
         ^ self
@@ -502,6 +502,6 @@
 !ArrayedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.64 2012-12-21 11:58:50 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.65 2013-12-06 14:40:54 stefan Exp $'
 ! !