Use <resource:#obsolete>
authorStefan Vogel <sv@exept.de>
Fri, 18 May 2001 00:29:23 +0200
changeset 966 dd7e0a32bcc1
parent 965 21f25a87c5c6
child 967 e087e94555aa
Use <resource:#obsolete>
RunArray.st
--- a/RunArray.st	Mon Mar 19 10:31:53 2001 +0100
+++ b/RunArray.st	Fri May 18 00:29:23 2001 +0200
@@ -50,7 +50,8 @@
  indices of each run, but since I envisage that most additions etc. will be to
  and from the end those are not included. In addition I have implemented the
  bare essentials of this for what I need it for - i.e. add to the end and take
- off the beginning.'!
+ off the beginning.'
+!
 
 !RunArray class methodsFor:'documentation'!
 
@@ -860,6 +861,8 @@
      that value.
      OBSOLETE: this is a leftover from earlier times; use #indexOf:ifAbsent:"
 
+    <resource:#obsolete>
+
     |idx|
 
     self obsoleteMethodWarning:'use #indexOf:ifAbsent:'.
@@ -886,6 +889,8 @@
      element of that value.
      OBSOLETE: this is a leftover from earlier times; use #indexOf:ifAbsent:"
 
+    <resource:#obsolete>
+
     self obsoleteMethodWarning:'use #indexOf:'.
     ^ self indexOf:oldObject ifAbsent:exceptionBlock
 
@@ -1250,5 +1255,5 @@
 !RunArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/RunArray.st,v 1.19 2000-08-22 13:57:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/RunArray.st,v 1.20 2001-05-17 22:29:23 stefan Exp $'
 ! !