SequenceableCollection.st
changeset 5872 240f458c3f82
parent 5850 6eac4271bf65
child 5887 803c3ff82afe
--- a/SequenceableCollection.st	Fri May 18 00:28:30 2001 +0200
+++ b/SequenceableCollection.st	Fri May 18 00:36:14 2001 +0200
@@ -2544,6 +2544,8 @@
      Pleace do no longer use this one;
      instead use #replaceAll:with: for ST-80 compatibility."
 
+    <resource:#obsolete>
+
     self obsoleteMethodWarning:'use #replaceAll:with:'.
     ^ self replaceAll:oldObject with:newObject
 
@@ -2562,6 +2564,8 @@
      Please do no longer use this one;
      instead use #replaceAll:with:from:to: for ST-80 compatibility."
 
+    <resource:#obsolete>
+
     self obsoleteMethodWarning:'use #replaceAll:with:from:to:'.
     ^ self replaceAll:oldObject with:newObject from:startIndex to:stopIndex
 
@@ -2707,6 +2711,8 @@
      Pleace do no longer use this one;
      instead use #replaceAny:with: for naming consistence."
 
+    <resource:#obsolete>
+
     self obsoleteMethodWarning:'use #replaceAny:with:'.
     ^ self replaceAny:aCollection with:newObject from:1 to:self size 
 
@@ -2730,6 +2736,8 @@
      Pleace do no longer use this one;
      instead use #replaceAny:with:from:to: for naming consistence."
     
+    <resource:#obsolete>
+
     self obsoleteMethodWarning:'use #replaceAny:with:from:to:'.
     ^ self replaceAny:aCollection with:newObject from:startIndex to:stopIndex 
 
@@ -3541,6 +3549,8 @@
     "OBSOLETE: use isSequenceable for ST-80 compatibility.
      This method is a historic leftover and will be removed."
 
+    <resource:#obsolete>
+
     self obsoleteMethodWarning:'use #isSequenceable'.
     ^ true
 
@@ -3623,6 +3633,7 @@
     "Created: 14.2.1997 / 16:13:03 / cg"
 ! !
 
+
 !SequenceableCollection methodsFor:'searching'!
 
 detect:aBlock startingAt:startIndex
@@ -5226,6 +5237,6 @@
 !SequenceableCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.150 2001-04-25 08:15:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.151 2001-05-17 22:36:14 stefan Exp $'
 ! !
 SequenceableCollection initialize!