X Tutup
Skip to content

Commit c75b7d4

Browse files
committed
Add lost #asString
1 parent ae6a114 commit c75b7d4

File tree

2 files changed

+6
-2
lines changed
  • repository
    • Grease-Pharo100-Core.package/GRPharoZnCodecStream.class/instance
    • Grease-Pharo90-Core.package/GRPharoZnUtf8CodecStream.class/instance

2 files changed

+6
-2
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
streaming
22
nextPutAll: aString
3-
encoder next: aString size putAll: aString startingAt: 1 toStream: stream
3+
| string |
4+
string := aString asString.
5+
encoder next: string size putAll: string startingAt: 1 toStream: stream
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
streaming
22
nextPutAll: aString
3-
encoder next: aString size putAll: aString startingAt: 1 toStream: stream
3+
| string |
4+
string := aString asString.
5+
encoder next: string size putAll: string startingAt: 1 toStream: stream

0 commit comments

Comments
 (0)
X Tutup