[Pkg] Rio: File-Base-kph.8.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Wed Dec 3 14:00:18 UTC 2008


A new version of File-Base was added to project Rio:
http://www.squeaksource.com/Rio/File-Base-kph.8.mcz

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

Name: File-Base-kph.8
Author: kph
Time: 3 December 2008, 2:00:16 pm
UUID: 635ececc-321f-4877-bbb6-0c036cd3077b
Ancestors: File-Base-kph.7

. fixed ascii file reading
. fixed windows volumes equality (resulted in the Volumes set was getting filled up)
. reader now calls readStream, so is equivalent now

=============== Diff against File-Base-kph.7 ===============

Item was changed:
  ----- Method: File>>readStream (in category 'adaptor') -----
  readStream
  
  	| reader |
  
  	reader :=  self basicReader ifNil: [ ^ nil ].
  	
+ 	self isBinary 
+ 		ifTrue: [ reader binary ]
+ 		ifFalse: [ reader wantsLineEndConversion: true ].
+ 		
- 	self isBinary ifTrue: [ reader binary ].
  	
  	^ reader!



More information about the Packages mailing list