ArrayedCollection.st
changeset 5557 f5f8d236027c
parent 5498 489dc2e6bd4f
child 5626 91a2b608702f
--- a/ArrayedCollection.st	Tue Aug 22 15:49:36 2000 +0200
+++ b/ArrayedCollection.st	Tue Aug 22 15:57:33 2000 +0200
@@ -326,6 +326,15 @@
     "Modified: 28.1.1997 / 00:39:59 / cg"
 ! !
 
+!ArrayedCollection methodsFor:'queries'!
+
+size
+    "redefined to re-enable size->basicSize forwarding
+     (it is caught in SequencableCollection)"
+
+    ^ self basicSize
+! !
+
 !ArrayedCollection methodsFor:'resizing'!
 
 grow:newSize
@@ -406,17 +415,10 @@
      #(1 2 3) includesKey:4 
      #(1 2 3) includesKey:3  
     "
-!
-
-size
-    "redefined to re-enable size->basicSize forwarding
-     (it is caught in SequencableCollection)"
-
-    ^ self basicSize
 ! !
 
 !ArrayedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.46 2000-08-04 16:57:09 tm Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.47 2000-08-22 13:55:56 cg Exp $'
 ! !