X Tutup
Skip to content

Commit 231fea7

Browse files
author
Johan Brichau
committed
- Remove temporary extension of ReadWriteStream (this was included in Pharo in pharo-project/pharo#1648).
- Replace use of deprecated RWBinaryOrTextStream with ReadWriteStream (this should work)
1 parent a9abfed commit 231fea7

File tree

4 files changed

+1
-13
lines changed

4 files changed

+1
-13
lines changed

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

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

5-
^ RWBinaryOrTextStream on: (ByteArray new: 4096)
5+
^ ReadWriteStream on: (ByteArray new: 4096)

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

Lines changed: 0 additions & 5 deletions
This file was deleted.

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

Lines changed: 0 additions & 4 deletions
This file was deleted.

repository/Grease-Pharo70-Core.package/ReadWriteStream.extension/properties.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)
X Tutup