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=7219Adds << 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!