class: Array
authorStefan Vogel <sv@exept.de>
Tue, 03 Feb 2015 14:54:47 +0100
changeset 17376 5c0cab0193cf
parent 17375 b1ab13a1778f
child 17377 e4fdf84bd41a
class: Array comment/format in: #beImmutable
Array.st
--- a/Array.st	Tue Feb 03 14:54:33 2015 +0100
+++ b/Array.st	Tue Feb 03 14:54:47 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 ArrayedCollection variableSubclass:#Array
 	instanceVariableNames:''
 	classVariableNames:''
@@ -299,6 +301,7 @@
     "Modified: 23.4.1996 / 15:55:06 / cg"
 ! !
 
+
 !Array methodsFor:'accessing'!
 
 at:index
@@ -472,7 +475,6 @@
 beImmutable
     "make myself write-protected"
 
-    "/ self assert:(ImmutableArray notNil).
     self changeClassTo:ImmutableArray
 
     "Created: / 07-06-2012 / 11:06:33 / cg"
@@ -2631,10 +2633,10 @@
 !Array class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.164 2014-04-28 13:09:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.165 2015-02-03 13:54:47 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.164 2014-04-28 13:09:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.165 2015-02-03 13:54:47 stefan Exp $'
 ! !