#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Mon, 27 Feb 2017 16:43:26 +0100
changeset 6112 14fe1826a075
parent 6111 8f59c48aa393
child 6113 8731509a4171
#REFACTORING by stefan class: TextCollector changed: #showCR:
TextCollector.st
--- a/TextCollector.st	Thu Feb 23 16:45:28 2017 +0100
+++ b/TextCollector.st	Mon Feb 27 16:43:26 2017 +0100
@@ -1071,7 +1071,7 @@
 
 "/ self ~~ Transcript ifTrue:[ ^ self tshow:anObject].
     printString := anObject printString.
-    printString size == 0 ifTrue:[
+    printString isEmptyOrNil ifTrue:[
         self cr.
         ^ self.
     ].
@@ -1119,6 +1119,7 @@
     self addLine:printString
 
     "Modified: / 24-03-2012 / 20:00:08 / cg"
+    "Modified: / 27-02-2017 / 15:22:47 / stefan"
 !
 
 space