[squeak-dev] The Inbox: Multilingual-monty.226.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jun 9 05:40:46 UTC 2017


A new version of Multilingual was added to project The Inbox:
http://source.squeak.org/inbox/Multilingual-monty.226.mcz

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

Name: Multilingual-monty.226
Author: monty
Time: 9 June 2017, 1:40:37.860457 am
UUID: 9f778323-2b0b-416b-8e3a-1d512fdadf83
Ancestors: Multilingual-pre.225

Updated for Files-monty.172 by removing MultiByteFileStream>>#open:forWrite: and moving its post-open initialization code to #opened:forWrite:

=============== Diff against Multilingual-pre.225 ===============

Item was removed:
- ----- Method: MultiByteFileStream>>open:forWrite: (in category 'open/close') -----
- open: fileName forWrite: writeMode 
- 	| result |
- 	result := super open: fileName forWrite: writeMode.
- 	result ifNotNil: [
- 			converter ifNil: [self converter: UTF8TextConverter new].
- 			lineEndConvention ifNil: [ self detectLineEndConvention ]
- 	].
- 	^result!

Item was added:
+ ----- Method: MultiByteFileStream>>opened:forWrite: (in category 'private') -----
+ opened: fileName forWrite: writeMode 
+ 	super opened: fileName forWrite: writeMode.
+ 	converter
+ 		ifNil: [self converter: UTF8TextConverter new].
+ 	lineEndConvention
+ 		ifNil: [self detectLineEndConvention]!



More information about the Squeak-dev mailing list