Iterator.st
changeset 2997 c752298b3db5
parent 2972 729db1782de3
child 3129 5cca8a5308fc
--- a/Iterator.st	Fri May 17 12:06:46 2013 +0200
+++ b/Iterator.st	Tue May 21 22:22:21 2013 +0200
@@ -347,7 +347,7 @@
 !Iterator methodsFor:'printing & storing'!
 
 displayOn:aGCOrStream
-    (self class == ByteArray and:[aGCOrStream isStream or:[aGCOrStream == Transcript]]) ifTrue:[
+    (aGCOrStream isStream or:[aGCOrStream == Transcript]) ifTrue:[
         aGCOrStream nextPutAll:'Iterator('.
         block displayOn:aGCOrStream.
         ^ self
@@ -398,10 +398,10 @@
 !Iterator class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Iterator.st,v 1.24 2013-04-04 07:58:59 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Iterator.st,v 1.25 2013-05-21 20:22:21 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/Iterator.st,v 1.24 2013-04-04 07:58:59 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Iterator.st,v 1.25 2013-05-21 20:22:21 cg Exp $'
 ! !