Coll.st
changeset 260 cefb485445a7
parent 257 bc569c7f4ba5
child 293 31df3850e98c
--- a/Coll.st	Thu Feb 16 17:24:49 1995 +0100
+++ b/Coll.st	Fri Feb 17 14:04:27 1995 +0100
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/Attic/Coll.st,v 1.23 1995-02-16 16:24:14 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/Coll.st,v 1.24 1995-02-17 13:04:16 claus Exp $
 '!
 
 !Collection class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/Attic/Coll.st,v 1.23 1995-02-16 16:24:14 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/Coll.st,v 1.24 1995-02-17 13:04:16 claus Exp $
 "
 !
 
@@ -776,10 +776,11 @@
     "return a Text-object (collection of lines) from myself.
      BIG warning: asText is totally misnamed here 
      - ST/X's asText has nothing to do with PP's asText.
-     Therefore it will be removed/renamed soon. Please use
-     asStringCollection."
+     Therefore it will be removed/renamed soon. 
+     Please use #asStringCollection."
 
-    'WARNING: the asText method is going to be removed/semantic changed' errorPrintNL.
+    self obsoleteMethodWarning.
+
     ^ self asStringCollection
 !