[squeak-dev] The Trunk: Multilingual-mt.276.mcz

Marcel Taeumel marcel.taeumel at hpi.de
Mon Apr 11 12:09:48 UTC 2022


Please ignore. I did not (yet) intent to commit:
   MultiByteFileStream>>initializeConverter


Already overwritten as 9d71b40d-6218-4c46-88b6-315050a29ee1 because of update map. Sorry for the noise.

Best,
Marcel
Am 11.04.2022 13:57:15 schrieb commits at source.squeak.org <commits at source.squeak.org>:
Marcel Taeumel uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-mt.276.mcz

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

Name: Multilingual-mt.276
Author: mt
Time: 11 April 2022, 1:57:02.730592 pm
UUID: d59e68bf-972c-d84a-a740-f9885d6d0e9a
Ancestors: Multilingual-mt.275

Offer a way to get a new text converter for the current platform's language environment.

=============== Diff against Multilingual-mt.275 ===============

Item was added:
+ ----- Method: LanguageEnvironment>>newSystemConverter (in category 'accessing') -----
+ newSystemConverter
+
+ ^ self class systemConverterClass new!

Item was changed:
----- Method: LanguageEnvironment>>systemConverter (in category 'accessing') -----
systemConverter

+ ^ systemConverter ifNil: [systemConverter := self newSystemConverter]!
- ^ systemConverter ifNil: [systemConverter := self class systemConverterClass new]!

Item was changed:
----- Method: MultiByteFileStream>>initializeConverter (in category 'initialize-release') -----
initializeConverter
+ "April 2022: We must not use the shared #systemConverter here as clients tend to change #lineEndConvention without care."
+
+ self converter: Locale currentPlatform newSystemConverter.!
-
- self converter: Locale currentPlatform systemConverter!


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20220411/3aa85a07/attachment.html>


More information about the Squeak-dev mailing list