CharacterWriteStream.st
changeset 18282 bf9c9049c781
parent 18265 e2f8e48223af
child 18285 7aab8c3dab19
child 18590 7528bf27e91c
--- a/CharacterWriteStream.st	Fri Apr 24 14:10:09 2015 +0200
+++ b/CharacterWriteStream.st	Fri Apr 24 14:11:13 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2005 by eXept Software AG
               All Rights Reserved
@@ -75,13 +77,13 @@
 new
     "I know, that I operate on strings"
 
-    ^ self on:(String new:10)
+    ^ self on:(String uninitializedNew:10)
 !
 
 new:count
     "I know, that I operate on strings"
 
-    ^ self on:(String new:count)
+    ^ self on:(String uninitializedNew:count)
 ! !
 
 !CharacterWriteStream methodsFor:'accessing'!
@@ -267,10 +269,10 @@
 !CharacterWriteStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterWriteStream.st,v 1.14 2015-04-22 14:05:37 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterWriteStream.st,v 1.15 2015-04-24 12:11:13 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterWriteStream.st,v 1.14 2015-04-22 14:05:37 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterWriteStream.st,v 1.15 2015-04-24 12:11:13 stefan Exp $'
 ! !