X Tutup
Skip to content

Commit 14590d6

Browse files
author
Johan Brichau
committed
ReadWriteStream instances should be created on empty collections.
1 parent c88ff7e commit 14590d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

repository/Grease-Pharo70-Core.package/GRPharoPlatform.class/instance/readWriteCharacterStream.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ factory
22
readWriteCharacterStream
33
"String based read write stream"
44

5-
^ ReadWriteStream on: (String new: 4096)
5+
^ ReadWriteStream on: String new

0 commit comments

Comments
 (0)
X Tutup