#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Fri, 28 Jun 2019 09:04:24 +0200
changeset 24388 4f358c92d248
parent 24387 93437c789d8a
child 24389 3ec8fdee7d8e
#OTHER by cg self class name -> self className
MessageSend.st
--- a/MessageSend.st	Fri Jun 28 09:03:35 2019 +0200
+++ b/MessageSend.st	Fri Jun 28 09:04:24 2019 +0200
@@ -333,7 +333,7 @@
     ].
 
     aGCOrStream 
-        nextPutAll:self class name;
+        nextPutAll:self className;
         nextPut:$(.
     receiver displayOn:aGCOrStream. 
     aGCOrStream nextPutAll:'>>'.
@@ -341,6 +341,7 @@
     aGCOrStream nextPut:$)
 
     "Modified (comment): / 22-02-2017 / 16:48:49 / cg"
+    "Modified: / 28-06-2019 / 09:04:15 / Claus Gittinger"
 !
 
 printOn:aStream