[squeak-dev] The Trunk: System-nice.674.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jul 17 23:45:46 UTC 2014


Nicolas Cellier uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-nice.674.mcz

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

Name: System-nice.674
Author: nice
Time: 18 July 2014, 1:44:33.004 am
UUID: f771275c-d2d0-437e-a58f-f1b781f6428f
Ancestors: System-nice.673

Remove SmartRefStream class>>streamedRepresentationOf: which is essentially the same as super.
The sole difference is that it tries to close the RWBinaryOrTextStream, but this is a no-op...

=============== Diff against System-nice.673 ===============

Item was removed:
- ----- Method: SmartRefStream class>>streamedRepresentationOf: (in category 'utilities') -----
- streamedRepresentationOf: anObject
- 
- 	| file |
- 	file := (RWBinaryOrTextStream on: (ByteArray new: 5000)).
- 	file binary.
- 	(self on: file) nextPut: anObject.
- 	file close.
- 	^file contents!



More information about the Squeak-dev mailing list