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

commits at source.squeak.org commits at source.squeak.org
Thu Mar 4 18:23:03 UTC 2021


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!



More information about the Squeak-dev mailing list