The Trunk: Collections-mt.621.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-mt.621.mcz

commits-2
Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-mt.621.mcz

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

Name: Collections-mt.621
Author: mt
Time: 19 April 2015, 12:46:14.477 pm
UUID: 6f4e3139-96df-e946-addd-df636cc9a712
Ancestors: Collections-ul.620

Convenience method added to String to remove line endings/breaks from a string.

=============== Diff against Collections-ul.620 ===============

Item was added:
+ ----- Method: String>>withoutLineEndings (in category 'converting') -----
+ withoutLineEndings
+
+ ^ self withSqueakLineEndings
+ copyReplaceAll: String cr
+ with: ' '
+ asTokens: false!