The Inbox: 51Deprecated-monty.48.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: 51Deprecated-monty.48.mcz

commits-2
A new version of 51Deprecated was added to project The Inbox:
http://source.squeak.org/inbox/51Deprecated-monty.48.mcz

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

Name: 51Deprecated-monty.48
Author: monty
Time: 9 June 2017, 1:36:27.362829 am
UUID: a7dc5474-dda7-40ca-8b71-13b997a0f14c
Ancestors: 51Deprecated-mt.47

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

=============== Diff against 51Deprecated-mt.47 ===============

Item was removed:
- ----- Method: CrLfFileStream>>open:forWrite: (in category 'open/close') -----
- open: aFileName forWrite: writeMode
- "Open the receiver.  If writeMode is true, allow write, else access will be
- read-only. "
- | result |
- result := super open: aFileName forWrite: writeMode.
- result ifNotNil: [self detectLineEndConvention].
- ^ result!

Item was added:
+ ----- Method: CrLfFileStream>>opened:forWrite: (in category 'private') -----
+ opened: aFileName forWrite: writeMode
+ super opened: aFileName forWrite: writeMode.
+ self detectLineEndConvention!