UndefinedObject.st
changeset 8833 717b01292d0e
parent 8830 df7adfaf1a57
child 9223 105cef4c98ac
--- a/UndefinedObject.st	Sat Apr 09 00:59:38 2005 +0200
+++ b/UndefinedObject.st	Sat Apr 09 19:14:05 2005 +0200
@@ -609,9 +609,8 @@
 !
 
 isEmptyOrNil
-    "Squeak compatibility:
-     return true if I am nil or an empty collection - since I am nil, return true.
-     Sigh: the same as ST/X isNilOrEmptyCollection - which one should be kept in the long run ?"
+    "return true if I am nil or an empty collection - since I am nil, return true.
+     (from Sqeak)"
 
     ^ true
 
@@ -636,8 +635,10 @@
 !
 
 isNilOrEmptyCollection
-    "return true if I am nil or an empty collection - since I am nil, return true.
-     Sigh: the same as Squeaks isEmptyOrNil - which one should be kept in the long run ?"
+    "return true if I am nil or an empty collection - false here.
+     Obsolete, use isEmptyOrNil."
+
+    <resource:#obsolete>
 
     ^ true
 
@@ -680,7 +681,7 @@
 !UndefinedObject class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UndefinedObject.st,v 1.61 2005-04-08 22:48:26 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UndefinedObject.st,v 1.62 2005-04-09 17:13:45 stefan Exp $'
 ! !
 
 UndefinedObject initialize!