Collection.st
branchjv
changeset 21042 edb2e7f82c62
parent 21024 8734987eb5c7
parent 21040 9f1f81cbf2b2
child 21089 d50f93ca9622
--- a/Collection.st	Thu Nov 24 06:40:21 2016 +0100
+++ b/Collection.st	Fri Nov 25 07:07:27 2016 +0100
@@ -257,9 +257,9 @@
 !
 
 withSize:n
-    "obsolete: please use newWithSize:, for its better name
-     Return a new collection which really provides space for n elements.
-     Kludges around the stupid definition of OrderedCollection>>new:"
+    "obsolete: please use newWithSize:, for its better name"
+
+    <resource: #obsolete>
 
     ^ self newWithSize:n
 ! !
@@ -273,6 +273,7 @@
     ^ self newWithSize:n
 ! !
 
+
 !Collection class methodsFor:'Signal constants'!
 
 emptyCollectionSignal
@@ -547,6 +548,7 @@
     "Created: / 22-10-2008 / 21:29:27 / cg"
 ! !
 
+
 !Collection methodsFor:'accessing'!
 
 anElement
@@ -5997,6 +5999,7 @@
     ^ aVisitor visitCollection:self with:aParameter
 ! !
 
+
 !Collection class methodsFor:'documentation'!
 
 version