The Inbox: Collections-mt.849.mcz

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

The Inbox: Collections-mt.849.mcz

commits-2
A new version of Collections was added to project The Inbox:
http://source.squeak.org/inbox/Collections-mt.849.mcz

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

Name: Collections-mt.849
Author: mt
Time: 19 August 2019, 1:52:50.361443 pm
UUID: 21723f9b-83a7-5f44-8876-9db5521539b4
Ancestors: Collections-mt.848

Minor fix to re-use given stream.

=============== Diff against Collections-mt.848 ===============

Item was changed:
  ----- Method: Collection>>asStringOn:delimiter: (in category 'printing - obsolete') -----
  asStringOn: aStream delimiter: delimString
 
  self flag: #deprecate.
+ ^ self asArray joinOn: aStream separatedBy: delimString!
- ^ self asArray joinSeparatedBy: delimString!