String.st
changeset 25350 8f0794692a17
parent 25098 787f66dc3405
--- a/String.st	Tue Mar 31 11:20:19 2020 +0200
+++ b/String.st	Tue Mar 31 11:24:40 2020 +0200
@@ -451,16 +451,19 @@
 !String class methodsFor:'Compatibility-Squeak'!
 
 cr
+    <resource: #obsolete>
     "return a string consisting of the cr-Character"
 
     "/ ATTENTION: you get a NL (for compatibility) here!!
     "/ please use String return  / String lf
-    self breakPoint:'please make it explicit, if a return or a linefeed is wanted.'.
+"/    self obsoleteMethodWarning:'please make it explicit, if a return or a linefeed is wanted.'.
     "/ for now.
     "/ will be changed, when the historic UNIX baggage is removed
     "/ and all cr's are really returns (instead of nl's).
 
     ^ self lf
+
+    "Modified: / 31-03-2020 / 11:23:37 / Stefan Vogel"
 !
 
 crlf
@@ -526,6 +529,8 @@
 ! !
 
 
+
+
 !String class methodsFor:'queries'!
 
 defaultPlatformClass
@@ -548,6 +553,8 @@
 
 
 
+
+
 !String methodsFor:'accessing'!
 
 at:index
@@ -5164,6 +5171,7 @@
     "Modified (comment): / 01-05-2017 / 14:05:41 / cg"
 ! !
 
+
 !String methodsFor:'substring searching'!
 
 caseInsensitiveIndexOfSubCollection:aSubString startingAt:startIndex ifAbsent:exceptionValue
@@ -5561,6 +5569,7 @@
 
 ! !
 
+
 !String class methodsFor:'documentation'!
 
 version