#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Wed, 13 Mar 2019 22:17:23 +0100
changeset 18683 82d65e71bc71
parent 18682 3f16db52ed11
child 18684 a9b6ee1c39ae
#REFACTORING by cg class: Tools::ProfilerInfoItem changed: #methodLabel #packageLabel
Tools__ProfilerInfoItem.st
--- a/Tools__ProfilerInfoItem.st	Wed Mar 13 21:50:20 2019 +0100
+++ b/Tools__ProfilerInfoItem.st	Wed Mar 13 22:17:23 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
               All Rights Reserved
@@ -116,20 +118,24 @@
 
     ^(self isBlock ifTrue:['[] in '] ifFalse:['']), 
         (self selector ? '???') , 
-            (' [' , (self methodClass isNil ifTrue:['???'] ifFalse:[self methodClass  nameWithoutPrefix]) , ']') asText allBold
+            (' [' , (self methodClass isNil 
+                ifTrue:['???'] 
+                ifFalse:[self methodClass  nameWithoutPrefix]) , ']') allBold
 
     "Created: / 01-12-2007 / 20:56:29 / janfrog"
     "Modified: / 01-12-2007 / 23:58:35 / janfrog"
     "Modified: / 18-10-2011 / 17:04:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 13-03-2019 / 22:15:04 / Claus Gittinger"
 !
 
 packageLabel
     |pkg|
 
     pkg := method isNil ifTrue:['???'] ifFalse:[method package].
-    ^('[' , pkg , ']') asText allItalic
+    ^('[' , pkg , ']') allItalic
 
     "Created: / 01-12-2007 / 20:58:18 / janfrog"
+    "Modified: / 13-03-2019 / 22:15:08 / Claus Gittinger"
 !
 
 selector