The Trunk: Network-mtf.55.mcz

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

The Trunk: Network-mtf.55.mcz

commits-2
Andreas Raab uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-mtf.55.mcz

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

Name: Network-mtf.55
Author: mtf
Time: 4 February 2010, 7:45:46.02 pm
UUID: bcfc4e84-2cd7-491d-9a76-4dbd1d35c1ba
Ancestors: Network-espin.54

7219: Improve Streams Usage Readability
http://bugs.squeak.org/view.php?id=7219

Adds << to streams to be mostly like nextPutAll, but uses putOn: so that it works with any object.

=============== Diff against Network-espin.54 ===============

Item was added:
+ ----- Method: SocketStream>><< (in category 'private') -----
+ << items
+
+   items putOn: self.
+
+ ^ self!