CharacterWriteStream.st
changeset 19886 3f66e06fc677
parent 19647 25297b59a272
child 19892 d1aecb538df5
child 22419 51057387bc92
--- a/CharacterWriteStream.st	Thu May 19 10:42:22 2016 +0200
+++ b/CharacterWriteStream.st	Thu May 19 10:51:48 2016 +0200
@@ -89,9 +89,10 @@
     "reset the stream, to write again over the existing (or already written) contents.
      See the comment in WriteStream>>contents"
 
+    "start with 8-bit String again"
     collection := String new:collection size.
     currentCharacterSize := collection bitsPerCharacter.
-    super resetPosition.
+    position := 0.
 ! !
 
 !CharacterWriteStream methodsFor:'private'!