no need to tune third, fourth; use inherited
authorClaus Gittinger <cg@exept.de>
Mon, 24 Mar 2003 18:18:44 +0100
changeset 7130 9b15b2be84b4
parent 7129 3ebfa1a3c956
child 7131 856d8fd6d39d
no need to tune third, fourth; use inherited
SequenceableCollection.st
--- a/SequenceableCollection.st	Mon Mar 24 18:18:24 2003 +0100
+++ b/SequenceableCollection.st	Mon Mar 24 18:18:44 2003 +0100
@@ -238,7 +238,6 @@
     "Created: / 18.5.1999 / 14:50:04 / cg"
 ! !
 
-
 !SequenceableCollection methodsFor:'Compatibility - Squeak'!
 
 allButLast
@@ -562,20 +561,6 @@
     "
 !
 
-fourth
-    "return the fourth element;
-     report an error, if the collections size is smaller than 4."
-
-    ^ self at:4
-
-    "
-     args:    
-     returns: fourthElement <object>
-    "
-
-    "Modified: / 20.5.1998 / 14:50:25 / cg"
-!
-
 keyAtEqualValue:value
     "return the index of a value.
      This is normally not used (use indexOf:), but makes the
@@ -686,20 +671,6 @@
     self at:index2 put:t
 
     "Modified: 15.10.1997 / 19:27:08 / cg"
-!
-
-third
-    "return the third element;
-     report an error, if the collections size is smaller than 3."
-
-    ^ self at:3
-
-    "
-     args:    
-     returns: thirdElement <object>
-    "
-
-    "Modified: / 20.5.1998 / 14:50:25 / cg"
 ! !
 
 !SequenceableCollection methodsFor:'adding & removing'!
@@ -5930,7 +5901,6 @@
     "Modified: 21.8.1997 / 18:30:49 / cg"
 ! !
 
-
 !SequenceableCollection methodsFor:'testing'!
 
 includesKey:anIndex
@@ -5951,7 +5921,7 @@
 !SequenceableCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.181 2003-03-18 15:23:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.182 2003-03-24 17:18:44 cg Exp $'
 ! !
 
 SequenceableCollection initialize!