X Tutup
Skip to content

Commit 1e7daed

Browse files
author
Johan Brichau
committed
Remove comment about dropping wantsLineEndConversion:. I don't think this is really necessary at all. Will need to mention this in the changelog and create a version increase to signal this change of behaviour on Pharo
1 parent 2289733 commit 1e7daed

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/readFileStreamOn.do.binary..st

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
file library
22
readFileStreamOn: aString do: aBlock binary: aBoolean
3-
"Line end conversion is no longer done for ascii... TBD!"
43

54
^ aBoolean
65
ifTrue: [ aString asFileReference binaryReadStreamDo: aBlock ]

repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/write.toFile.inFolder..st

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
file library
22
write: aStringOrByteArray toFile: aFileNameString inFolder: aFolderString
33
"writes aStringOrByteArray to a file named aFilenameString in the folder aFolderString"
4-
"TODO: wantsLineEndConversion: true; ??"
54
^ self
65
writeFileStreamOn: (aFolderString asFileReference / aFileNameString) ensureDelete pathString
76
do: [ :stream | stream nextPutAll: aStringOrByteArray ]

0 commit comments

Comments
 (0)
X Tutup