*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Tue, 22 Aug 2000 16:04:56 +0200
changeset 5558 dfdb1198bf6a
parent 5557 f5f8d236027c
child 5559 426dee57de44
*** empty log message ***
Bag.st
--- a/Bag.st	Tue Aug 22 15:57:33 2000 +0200
+++ b/Bag.st	Tue Aug 22 16:04:56 2000 +0200
@@ -70,7 +70,7 @@
     "return a new empty Bag with initial space for size elements.
      Elements will be compared using equality compare (i.e. #= not #== identity)."
 
-    ^ super new initContents:size
+    ^ self basicNew initContents:size
 !
 
 identityNew
@@ -84,13 +84,13 @@
     "return a new empty Bag with initial space for size elements.
      Elements will be compared using identity compare (i.e. #== not #= equality)."
 
-    ^ super new initContentsForIdentity:size
+    ^ self basicNew initContentsForIdentity:size
 !
 
 new
     "return a new empty Bag which compares for equality (i.e. not identity)"
 
-    ^ super new initContents
+    ^ self basicNew initContents
 !
 
 new:size
@@ -321,5 +321,5 @@
 !Bag class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Bag.st,v 1.26 2000-08-22 13:56:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Bag.st,v 1.27 2000-08-22 14:04:56 cg Exp $'
 ! !