X Tutup
Skip to content

Commit a9abfed

Browse files
author
Johan Brichau
committed
Reverted the change to the instantiation of ReadWriteStream (it was correct) and (temporarily) reverted the changes in Pharo7 using overrides in Grease to fix the tests
1 parent db1c924 commit a9abfed

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
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
5+
^ ReadWriteStream on: (String new: 4096)

repository/Grease-Pharo70-Core.package/ReadWriteStream.extension/instance/contents.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
contents
33

44
readLimit := readLimit max: position.
5-
^ collection copyFrom: 1 to: readLimit
5+
^collection copyFrom: 1 to: readLimit
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*Grease-Pharo70-Core
2+
on: aCollection
3+
4+
super on: aCollection.

0 commit comments

Comments
 (0)
X Tutup