# HG changeset patch # User Claus Gittinger # Date 1559940733 -7200 # Node ID e0870fe108eb14b632460a978e9b38ba3db824ef # Parent 15a081b8b4425aaf23bb73c3f028a20ee6af5ca9 #REFACTORING by cg class: ProxyMethod changed: #printStringForBrowserWithSelector:inClass: (send #withColor: instead of #colorizeAllWith:) diff -r 15a081b8b442 -r e0870fe108eb ProxyMethod.st --- a/ProxyMethod.st Fri Jun 07 22:45:13 2019 +0200 +++ b/ProxyMethod.st Fri Jun 07 22:52:13 2019 +0200 @@ -1,3 +1,5 @@ +"{ Encoding: utf8 }" + " Copyright (c) 2010-2011 Jan Vrany, Jan Kurs & Marcel Hlopko, SWING Research Group, Czech Technical University @@ -26,6 +28,8 @@ " "{ Package: 'stx:libjava' }" +"{ NameSpace: Smalltalk }" + Method variableSubclass:#ProxyMethod instanceVariableNames:'body' classVariableNames:'InstallProxies' @@ -268,9 +272,10 @@ printStringForBrowserWithSelector:selector inClass:class - ^selector , ' * proxy *' asText colorizeAllWith: Color gray + ^selector , ' * proxy *' asText withColor: Color gray "Created: / 16-12-2011 / 01:16:58 / Jan Vrany " + "Modified: / 07-06-2019 / 22:13:23 / Claus Gittinger" ! ! !ProxyMethod methodsFor:'testing'! @@ -308,7 +313,7 @@ !ProxyMethod class methodsFor:'documentation'! version_CVS - ^ '$Header: /cvs/stx/stx/libjava/ProxyMethod.st,v 1.5 2015-03-20 12:08:00 vrany Exp $' + ^ '$Header$' ! version_HG @@ -317,7 +322,7 @@ ! version_SVN - ^ 'Id' + ^ '$Id$' ! !