'From Pharo0.1 of 16 May 2008 [Latest update: #10300] on 10 May 2009 at 1:01:25 am'!
"Change Set:		FasterLatin1Conversion-Part4
Date:			10 May 2009
Author:			nice

Install fast latin1 conversion Part4

Install fast latin1 conversion in MultiByteFileStream>>#nextPutAll:"!


!MultiByteFileStream methodsFor: 'public' stamp: 'nice 5/10/2009 00:21'!
nextPutAll: aCollection

	(self isBinary or: [aCollection class == ByteArray]) ifTrue: [
		^ super nextPutAll: aCollection.
	].
	self converter nextPutAll: aCollection toStream: self.! !
