CharacterWriteStream.st
branchjv
changeset 19892 d1aecb538df5
parent 19660 d48041817c55
parent 19886 3f66e06fc677
--- a/CharacterWriteStream.st	Thu May 19 07:07:52 2016 +0200
+++ b/CharacterWriteStream.st	Fri May 20 06:45:01 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'!