#REFACTORING by cg cvs_MAIN
authorClaus Gittinger <cg@exept.de>
Fri, 07 Jun 2019 22:53:38 +0200
branchcvs_MAIN
changeset 3904 63498892f4e0
parent 3903 e0870fe108eb
child 3905 47a9771ec8fa
#REFACTORING by cg class: ProxyMethod changed: #source
ProxyMethod.st
--- a/ProxyMethod.st	Fri Jun 07 22:52:13 2019 +0200
+++ b/ProxyMethod.st	Fri Jun 07 22:53:38 2019 +0200
@@ -230,13 +230,13 @@
 source
 
     ^String streamContents:[:s|
-        s nextPut: $"; cr.
-        s nextPutAll: 'This is a generated proxy method'; cr.
-        self decompileTo: s. s cr.
-        s nextPut: $"; cr.
+        s nextPutAll: c'"\nThis is a generated proxy method\n'.
+        self decompileTo:s. 
+        s nextPutAll: c'\n"\n'.
     ]
 
     "Created: / 23-12-2011 / 13:51:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 07-06-2019 / 22:53:28 / Claus Gittinger"
 ! !
 
 !ProxyMethod methodsFor:'building'!