# HG changeset patch # User Claus Gittinger # Date 1559940818 -7200 # Node ID 63498892f4e059a826c1bf8270c6cc8fd5e3be53 # Parent e0870fe108eb14b632460a978e9b38ba3db824ef #REFACTORING by cg class: ProxyMethod changed: #source diff -r e0870fe108eb -r 63498892f4e0 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 " + "Modified: / 07-06-2019 / 22:53:28 / Claus Gittinger" ! ! !ProxyMethod methodsFor:'building'!