[squeak-dev] The Trunk: Multilingual-eem.255.mcz

Marcel Taeumel marcel.taeumel at hpi.de
Fri Mar 5 08:25:17 UTC 2021


+1 for moving MultiByteFileStream from "Multilingual" to "Files".

Best,
Marcel
Am 04.03.2021 19:23:10 schrieb commits at source.squeak.org <commits at source.squeak.org>:
Eliot Miranda uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-eem.255.mcz

==================== Summary ====================

Name: Multilingual-eem.255
Author: eem
Time: 4 March 2021, 10:23:00.658047 am
UUID: 55a1972b-10f3-4938-bc52-fa293e2b7973
Ancestors: Multilingual-ul.254

Cleanup related to Files-eem.187.

BTW, seems to me that MultiByteFileStream no longer belongs in Multilingual, but would be better off in Files.

=============== Diff against Multilingual-ul.254 ===============

Item was changed:
----- Method: MultiByteFileStream>>requestDropStream: (in category 'private') -----
requestDropStream: dropIndex
+ "Override to install proper converter."
- "Needs to install proper converter"

+ ^(super requestDropStream: dropIndex) ifNotNil:
+ [:result|
- | result |
- result := super requestDropStream: dropIndex.
- result ifNotNil: [
converter ifNil: [self converter: UTF8TextConverter new].
+ lineEndConvention ifNil: [ self detectLineEndConvention ].
+ result]!
- lineEndConvention ifNil: [ self detectLineEndConvention ]
- ].
- ^result!


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20210305/77b0b440/attachment.html>


More information about the Squeak-dev mailing list