#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Sun, 21 Jul 2019 08:31:35 +0200
changeset 24447 36e27d5222ef
parent 24446 9ae04c2b6e6d
child 24448 466c98f76a4b
#UI_ENHANCEMENT by cg class: ImmutableByteArray changed: #displayOn:
ImmutableByteArray.st
--- a/ImmutableByteArray.st	Sun Jul 21 08:30:32 2019 +0200
+++ b/ImmutableByteArray.st	Sun Jul 21 08:31:35 2019 +0200
@@ -362,9 +362,12 @@
     ].
     
     self storeOn:aGCOrStream.
-    aGCOrStream nextPutAll:'"immutable"'.
+    self size > 0 ifTrue:[
+        aGCOrStream nextPutAll:' "immutable"'.
+    ].
 
     "Modified (format): / 22-02-2017 / 16:58:38 / cg"
+    "Modified: / 21-07-2019 / 08:31:13 / Claus Gittinger"
 ! !
 
 !ImmutableByteArray methodsFor:'private'!