The Trunk: Collections-eem.394.mcz

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

The Trunk: Collections-eem.394.mcz

commits-2
Eliot Miranda uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-eem.394.mcz

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

Name: Collections-eem.394
Author: eem
Time: 21 October 2010, 10:24:12.673 am
UUID: c47c656d-31ac-46e8-a56d-c7879a2db324
Ancestors: Collections-eem.393

WriteStream>ensureCr useful for writing to the transcript.
(better name than ensureACr)

=============== Diff against Collections-eem.393 ===============

Item was removed:
- ----- Method: WriteStream>>ensureACr (in category 'character writing') -----
- ensureACr
- "Append a cr character to the receiver IFF there is not one on the end."
-
- self ensureEndsWith: Character cr!

Item was added:
+ ----- Method: WriteStream>>ensureCr (in category 'character writing') -----
+ ensureCr
+ "Append a cr character to the receiver IFF there is not one on the end."
+
+ self ensureEndsWith: Character cr!