[Pkg] The Trunk: Files-dtl.143.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Apr 4 19:40:15 UTC 2015


David T. Lewis uploaded a new version of Files to project The Trunk:
http://source.squeak.org/trunk/Files-dtl.143.mcz

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

Name: Files-dtl.143
Author: dtl
Time: 4 April 2015, 3:39:20.951 pm
UUID: a4f41bf8-a31f-47d4-a259-0c2f07e16beb
Ancestors: Files-bf.142

A CrLfFileStream is expected to be ascii mode

=============== Diff against Files-bf.142 ===============

Item was changed:
  ----- Method: CrLfFileStream class>>new (in category 'class initialization') -----
  new
  
  	self deprecated: 'This class is now obsolete, use MultiByteFileStream instead.'.
+ 	^ (MultiByteFileStream new ascii) wantsLineEndConversion: true; yourself.
- 	^ (MultiByteFileStream new) wantsLineEndConversion: true; yourself.
  
  !



More information about the Packages mailing list