SortedCollection.st
changeset 348 5ac1b6b43600
parent 345 cf2301210c47
child 359 b8df66983eff
--- a/SortedCollection.st	Wed May 17 14:17:43 1995 +0200
+++ b/SortedCollection.st	Thu May 18 17:10:35 1995 +0200
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1993 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/SortedCollection.st,v 1.16 1995-05-16 17:09:05 claus Exp $
+$Header: /cvs/stx/stx/libbasic/SortedCollection.st,v 1.17 1995-05-18 15:10:23 claus Exp $
 '!
 
 !SortedCollection class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/SortedCollection.st,v 1.16 1995-05-16 17:09:05 claus Exp $
+$Header: /cvs/stx/stx/libbasic/SortedCollection.st,v 1.17 1995-05-18 15:10:23 claus Exp $
 "
 !
 
@@ -304,7 +304,7 @@
     "return the element before the argument, anObject; or nil if there is none.
      If the receiver does not contain anObject, report an error"
 
-    ^ self before:anObject ifAbsent:[self errorNotFound:anObject]
+    ^ self before:anObject ifAbsent:[self errorValueNotFound:anObject]
 
     "
      #(7 3 9 10 99) asSortedCollection before:50
@@ -346,7 +346,7 @@
     "return the element after the argument, anObject; or nil if there is none.
      If the receiver does not contain anObject, report an error"
 
-    ^ self after:anObject ifAbsent:[self errorNotFound:anObject]
+    ^ self after:anObject ifAbsent:[self errorValueNotFound:anObject]
 
     "
      #(7 3 9 10 99) asSortedCollection after:50